Win32 - Minor memwatch menu clean up.
This commit is contained in:
parent
cf93b5b102
commit
4d988b8e53
|
@ -1,5 +1,5 @@
|
|||
---version 2.0.4 yet to be released---
|
||||
|
||||
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.
|
||||
02-nov-2008 - shinydoofy - added --fcmconvert for SDL
|
||||
02-nov-2008 - zeromus - emulua - add rom.readbyte and rom.readbytesigned
|
||||
|
|
|
@ -704,7 +704,6 @@ static BOOL CALLBACK MemWatchCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARA
|
|||
//Menu Items
|
||||
switch(LOWORD(wParam))
|
||||
{
|
||||
case ACCEL_CTRL_W:
|
||||
case MEMW_FILE_CLOSE:
|
||||
CloseMemoryWatch();
|
||||
break;
|
||||
|
|
|
@ -248,13 +248,13 @@ MEMWATCHMENU MENU
|
|||
BEGIN
|
||||
POPUP "File "
|
||||
BEGIN
|
||||
MENUITEM "New... Ctrl+N", MEMW_FILE_NEW
|
||||
MENUITEM "Open... Ctrl+O", MEMW_FILE_OPEN
|
||||
MENUITEM "Save Ctrl+S", MEMW_FILE_SAVE
|
||||
MENUITEM "Save As.. Ctrl+Shift+S", MEMW_FILE_SAVEAS
|
||||
MENUITEM "&New...\tCtrl+N", MEMW_FILE_NEW
|
||||
MENUITEM "&Open...\tCtrl+O", MEMW_FILE_OPEN
|
||||
MENUITEM "&Save\tCtrl+S", MEMW_FILE_SAVE
|
||||
MENUITEM "Sa&ve As..\tCtrl+Shift+S", MEMW_FILE_SAVEAS
|
||||
MENUITEM "&Recent", ID_FILE_RECENT
|
||||
MENUITEM SEPARATOR
|
||||
MENUITEM "Close Ctrl+W", MEMW_FILE_CLOSE
|
||||
MENUITEM "&Close\tAlt+F4", MEMW_FILE_CLOSE
|
||||
END
|
||||
POPUP "Options"
|
||||
BEGIN
|
||||
|
|
Loading…
Reference in New Issue