diff --git a/src/sdltiles.cpp b/src/sdltiles.cpp index f7c6383f43952..57973e4ce57f9 100644 --- a/src/sdltiles.cpp +++ b/src/sdltiles.cpp @@ -2327,9 +2327,9 @@ void draw_quick_shortcuts() SDL_RenderSetScale( renderer.get(), text_scale, text_scale ); text_x = ( WindowWidth - ( ( font->fontwidth * hint_length ) * text_scale ) ) * 0.5f / text_scale; text_y = ( WindowHeight - font->fontheight * text_scale ) * 0.5f / text_scale; - font->OutputChar( hint_text, text_x + 1, text_y + 1, 0, + font->OutputChar( hint_text, point( text_x + 1, text_y + 1 ), 0, get_option( "ANDROID_SHORTCUT_OPACITY_SHADOW" ) * 0.01f ); - font->OutputChar( hint_text, text_x, text_y, get_option( "ANDROID_SHORTCUT_COLOR" ), + font->OutputChar( hint_text, point( text_x, text_y ), get_option( "ANDROID_SHORTCUT_COLOR" ), get_option( "ANDROID_SHORTCUT_OPACITY_FG" ) * 0.01f ); } }