mirror of
https://github.com/gopher64/gopher64.git
synced 2026-07-11 01:25:20 +02:00
reduce font size a bit (#725)
* reduce font size a bit * remove duplicate messages
This commit is contained in:
@@ -272,7 +272,7 @@ void rdp_init(void *_window, GFX_INFO _gfx_info, const void *font,
|
||||
}
|
||||
|
||||
message_font =
|
||||
TTF_OpenFontIO(SDL_IOFromConstMem(font, font_size), true, 30.0);
|
||||
TTF_OpenFontIO(SDL_IOFromConstMem(font, font_size), true, 25.0);
|
||||
if (!message_font) {
|
||||
rdp_close();
|
||||
return;
|
||||
|
||||
@@ -64,7 +64,6 @@ static void login_callback(int result, const char *error_message,
|
||||
rc_client_t *client, void *userdata) {
|
||||
// If not successful, just report the error and bail.
|
||||
if (result != RC_OK) {
|
||||
printf("RetroAchievements: Login failed: %s\n", error_message);
|
||||
store_retroachievements_credentials(NULL, NULL, userdata);
|
||||
return;
|
||||
}
|
||||
@@ -111,7 +110,6 @@ void ra_login_token_user(const char *username, const char *token,
|
||||
static void load_game_callback(int result, const char *error_message,
|
||||
rc_client_t *client, void *userdata) {
|
||||
if (result != RC_OK) {
|
||||
printf("RetroAchievements: game load failed: %s\n", error_message);
|
||||
return;
|
||||
}
|
||||
char buffer[512];
|
||||
|
||||
Reference in New Issue
Block a user