diff --git a/changelog.txt b/changelog.txt index dd5e05c1..2064b5d4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,6 @@ ---version 2.0.4 yet to be released--- +10-nov-2008 - adelikat - win32 - removed accel keys from main window +10-nov-2008 - adelikat - Win32 - added Open & Close ROM mappable hotkeys, removed accel functions 10-nov-2008 - punkrockguy - improved the sdl sound code; drasticaly improves quality of sound. 09-nov-2008 - adelikat - minor memory watch menu clean up, removed Ctrl+W hotkey for close (and placed Alt+F4 on the menu name) 08-nov-2008 - zeromus - big endian wasnt compiling. fix issues. diff --git a/src/drivers/win/main.cpp b/src/drivers/win/main.cpp index 876ffc85..95a718bf 100644 --- a/src/drivers/win/main.cpp +++ b/src/drivers/win/main.cpp @@ -297,7 +297,7 @@ int BlockingCheck() if(IsChild(hwndTasEdit,msg.hwnd)) handled = TranslateAccelerator(hwndTasEdit,fceu_hAccel,&msg); } - + /* //adelikat - Currently no accel keys are used in the main window. Uncomment this block to activate them. if(!handled) if(msg.hwnd == hAppWnd) { @@ -307,7 +307,7 @@ int BlockingCheck() int zzz=9; } } - + */ if(!handled) { TranslateMessage(&msg); diff --git a/src/drivers/win/window.cpp b/src/drivers/win/window.cpp index 7ad74b72..ec15c86c 100644 --- a/src/drivers/win/window.cpp +++ b/src/drivers/win/window.cpp @@ -1091,7 +1091,7 @@ LRESULT FAR PASCAL AppWndProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam) // Hotkeys menu was selected MapInput(); break; - + case MENU_RESET: // The reset menu was selected FCEUI_ResetNES();