Removed accel table from main window (since all previous accel keys are now in the mappable hotkeys).
This commit is contained in:
parent
8ac6fa1256
commit
a781ee5abd
|
@ -1,4 +1,6 @@
|
||||||
---version 2.0.4 yet to be released---
|
---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.
|
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)
|
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.
|
08-nov-2008 - zeromus - big endian wasnt compiling. fix issues.
|
||||||
|
|
|
@ -297,7 +297,7 @@ int BlockingCheck()
|
||||||
if(IsChild(hwndTasEdit,msg.hwnd))
|
if(IsChild(hwndTasEdit,msg.hwnd))
|
||||||
handled = TranslateAccelerator(hwndTasEdit,fceu_hAccel,&msg);
|
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(!handled)
|
||||||
if(msg.hwnd == hAppWnd)
|
if(msg.hwnd == hAppWnd)
|
||||||
{
|
{
|
||||||
|
@ -307,7 +307,7 @@ int BlockingCheck()
|
||||||
int zzz=9;
|
int zzz=9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
if(!handled)
|
if(!handled)
|
||||||
{
|
{
|
||||||
TranslateMessage(&msg);
|
TranslateMessage(&msg);
|
||||||
|
|
|
@ -1091,7 +1091,7 @@ LRESULT FAR PASCAL AppWndProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam)
|
||||||
// Hotkeys menu was selected
|
// Hotkeys menu was selected
|
||||||
MapInput();
|
MapInput();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MENU_RESET:
|
case MENU_RESET:
|
||||||
// The reset menu was selected
|
// The reset menu was selected
|
||||||
FCEUI_ResetNES();
|
FCEUI_ResetNES();
|
||||||
|
|
Loading…
Reference in New Issue