Skip to content

Commit

Permalink
updated hint for gs_client fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Feb 29, 2024
1 parent 11b764c commit dd9df9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/backend/backend_gs.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ GS_CLIENT app_gs_client_new(app_t *app) {
if (client == NULL) {
const char *message = NULL;
gs_get_error(&message);
app_fatal_error("Fatal error", "Failed to create GS_CLIENT: %s", message);
app_fatal_error("Failed to initialize client",
"Please try uninstalling and reinstalling the app.\n\n"
"Details: %s", message);
app_halt(app);
}
SDL_UnlockMutex(app->backend.gs_client_mutex);
Expand Down

0 comments on commit dd9df9b

Please sign in to comment.