mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Update MenuScreens.cpp
Fix a miscompile for asian os.
This commit is contained in:
parent
7e6ad09233
commit
73f5c6bc4e
1 changed files with 4 additions and 2 deletions
|
@ -23,6 +23,8 @@
|
|||
namespace MainWindow {
|
||||
void BrowseAndBoot(std::string defaultPath);
|
||||
}
|
||||
|
||||
#pragma execution_character_set("utf-8")
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
@ -160,7 +162,7 @@ void LogoScreen::render() {
|
|||
ui_draw2d.SetFontScale(1.5f, 1.5f);
|
||||
ui_draw2d.DrawText(UBUNTU48, "PPSSPP", dp_xres / 2, dp_yres / 2 - 30, colorAlpha(0xFFFFFFFF, alphaText), ALIGN_CENTER);
|
||||
ui_draw2d.SetFontScale(1.0f, 1.0f);
|
||||
ui_draw2d.DrawText(UBUNTU24, "Created by Henrik Rydg\u00E5rd", dp_xres / 2, dp_yres / 2 + 40, colorAlpha(0xFFFFFFFF, alphaText), ALIGN_CENTER);
|
||||
ui_draw2d.DrawText(UBUNTU24, "Created by Henrik Rydgård", dp_xres / 2, dp_yres / 2 + 40, colorAlpha(0xFFFFFFFF, alphaText), ALIGN_CENTER);
|
||||
ui_draw2d.DrawText(UBUNTU24, "Free Software under GPL 2.0", dp_xres / 2, dp_yres / 2 + 70, colorAlpha(0xFFFFFFFF, alphaText), ALIGN_CENTER);
|
||||
ui_draw2d.DrawText(UBUNTU24, "www.ppsspp.org", dp_xres / 2, dp_yres / 2 + 130, colorAlpha(0xFFFFFFFF, alphaText), ALIGN_CENTER);
|
||||
if (bootFilename_.size()) {
|
||||
|
@ -976,7 +978,7 @@ static const char * credits[] = {
|
|||
"",
|
||||
"A fast and portable PSP emulator",
|
||||
"",
|
||||
"Created by Henrik Rydg\u00E5rd",
|
||||
"Created by Henrik Rydgård",
|
||||
"(aka hrydgard, ector)"
|
||||
"",
|
||||
"",
|
||||
|
|
Loading…
Add table
Reference in a new issue