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:
Lioncash 2019-07-28 23:16:20 -04:00
parent 3f947f086f
commit c93fffaed6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
};