mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
DolphinQt/HotkeyScheduler: Correct string within Run()
AddMessage() by itself doesn't perform string formatting facilities, so this message was actually using the EFB scale as a duration value, not a format argument. This corrects that.
This commit is contained in:
parent
3f947f086f
commit
c93fffaed6
@ -337,7 +337,7 @@ void HotkeyScheduler::Run()
|
||||
OSD::AddMessage("Internal Resolution: Native");
|
||||
break;
|
||||
default:
|
||||
OSD::AddMessage("Internal Resolution: %dx", g_Config.iEFBScale);
|
||||
OSD::AddMessage(StringFromFormat("Internal Resolution: %dx", g_Config.iEFBScale));
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user