From 0ca8cde10beb02791d048790cd7046075f1f108d Mon Sep 17 00:00:00 2001 From: "SND\\edgbla_cp" Date: Sat, 14 Dec 2013 01:33:30 +0000 Subject: [PATCH] . git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88107 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- win32/gui/WndMain.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/win32/gui/WndMain.c b/win32/gui/WndMain.c index 1f42701b..f7eb971c 100755 --- a/win32/gui/WndMain.c +++ b/win32/gui/WndMain.c @@ -90,7 +90,7 @@ LangDef sLangs[] = { { "zh_CN", N_("Simplified Chinese"), 0x0804 }, { "zh_TW", N_("Traditional Chinese"), 0x0404 }, { "ja", N_("Japanese"), 0x0411 }, - { "ko", N_("Korean"), 0x0412 }, + { "ko_KR", N_("Korean"), 0x0412 }, { "", "", 0xFFFF }, }; @@ -754,12 +754,12 @@ LRESULT WINAPI MainWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { DeleteDC(hdcmem); return TRUE; - case WM_EXITSIZEMOVE: - if(Config.SaveWindowPos) { - GetWindowRect(hWnd, &rect); - Config.WindowPos[0] = rect.left; - Config.WindowPos[1] = rect.top; - } + case WM_EXITSIZEMOVE: + if(Config.SaveWindowPos) { + GetWindowRect(hWnd, &rect); + Config.WindowPos[0] = rect.left; + Config.WindowPos[1] = rect.top; + } return TRUE; case WM_QUIT: @@ -1419,10 +1419,10 @@ BOOL CALLBACK ConfigureCpuDlgProc(HWND hW, UINT uMsg, WPARAM wParam, LPARAM lPar Config.Widescreen = Button_GetCheck(GetDlgItem(hW,IDC_WIDESCREEN)); Config.HideCursor = Button_GetCheck(GetDlgItem(hW,IDC_HIDECURSOR)); Config.SaveWindowPos = Button_GetCheck(GetDlgItem(hW,IDC_SAVEWINDOWPOS)); - if(Config.SaveWindowPos) { - GetWindowRect(gApp.hWnd, &rect); - Config.WindowPos[0] = rect.left; - Config.WindowPos[1] = rect.top; + if(Config.SaveWindowPos) { + GetWindowRect(gApp.hWnd, &rect); + Config.WindowPos[0] = rect.left; + Config.WindowPos[1] = rect.top; } tmp = Config.Debug; Config.Debug = Button_GetCheck(GetDlgItem(hW,IDC_DEBUG));