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");
|
OSD::AddMessage("Internal Resolution: Native");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
OSD::AddMessage("Internal Resolution: %dx", g_Config.iEFBScale);
|
OSD::AddMessage(StringFromFormat("Internal Resolution: %dx", g_Config.iEFBScale));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue