mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06: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:
@ -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;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user