git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88107 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\edgbla_cp 2013-12-14 01:33:30 +00:00
parent 824cedc700
commit 0ca8cde10b
1 changed files with 11 additions and 11 deletions

View File

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