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---
|
---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.
|
08-nov-2008 - zeromus - big endian wasnt compiling. fix issues.
|
||||||
02-nov-2008 - shinydoofy - added --fcmconvert for SDL
|
02-nov-2008 - shinydoofy - added --fcmconvert for SDL
|
||||||
02-nov-2008 - zeromus - emulua - add rom.readbyte and rom.readbytesigned
|
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
|
//Menu Items
|
||||||
switch(LOWORD(wParam))
|
switch(LOWORD(wParam))
|
||||||
{
|
{
|
||||||
case ACCEL_CTRL_W:
|
|
||||||
case MEMW_FILE_CLOSE:
|
case MEMW_FILE_CLOSE:
|
||||||
CloseMemoryWatch();
|
CloseMemoryWatch();
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -248,13 +248,13 @@ MEMWATCHMENU MENU
|
||||||
BEGIN
|
BEGIN
|
||||||
POPUP "File "
|
POPUP "File "
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "New... Ctrl+N", MEMW_FILE_NEW
|
MENUITEM "&New...\tCtrl+N", MEMW_FILE_NEW
|
||||||
MENUITEM "Open... Ctrl+O", MEMW_FILE_OPEN
|
MENUITEM "&Open...\tCtrl+O", MEMW_FILE_OPEN
|
||||||
MENUITEM "Save Ctrl+S", MEMW_FILE_SAVE
|
MENUITEM "&Save\tCtrl+S", MEMW_FILE_SAVE
|
||||||
MENUITEM "Save As.. Ctrl+Shift+S", MEMW_FILE_SAVEAS
|
MENUITEM "Sa&ve As..\tCtrl+Shift+S", MEMW_FILE_SAVEAS
|
||||||
MENUITEM "&Recent", ID_FILE_RECENT
|
MENUITEM "&Recent", ID_FILE_RECENT
|
||||||
MENUITEM SEPARATOR
|
MENUITEM SEPARATOR
|
||||||
MENUITEM "Close Ctrl+W", MEMW_FILE_CLOSE
|
MENUITEM "&Close\tAlt+F4", MEMW_FILE_CLOSE
|
||||||
END
|
END
|
||||||
POPUP "Options"
|
POPUP "Options"
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
Loading…
Reference in New Issue