Taseditor: fixed "Unpause emulator" in context menu

This commit is contained in:
ansstuff 2012-01-30 17:59:15 +00:00
parent a1e0de898b
commit b935762d10
4 changed files with 6 additions and 6 deletions

View File

@ -1439,10 +1439,10 @@ CAPTION "About"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK",IDCANCEL,78,49,50,14
ICON IDI_ICON4,IDC_STATIC,11,10,21,20
ICON IDI_ICON4,IDC_STATIC,11,10,20,20
LTEXT "TAS Editor",IDC_STATIC,46,9,49,11
LTEXT "Version 1.0",IDC_STATIC,45,22,37,8
LTEXT "Created by AnS in 2011",IDC_STATIC,107,9,77,8
LTEXT "Created by AnS",IDC_STATIC,107,9,52,8
LTEXT "Based on TASEdit v0.1",IDC_STATIC,107,22,83,9,SS_NOPREFIX
LTEXT "made by zeromus & adelikat",IDC_STATIC,107,31,96,9,SS_NOPREFIX
END

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

View File

@ -1,5 +1,5 @@
//Specification file for TASEDITOR_LUA class
#define LUACHANGES_NAME_MAX_LEN 80 // the name should not be longer than 80 letters
#define LUACHANGES_NAME_MAX_LEN 70 // custom name of operation should not be longer than 70 letters
struct PENDING_CHANGES
{

View File

@ -698,9 +698,6 @@ BOOL CALLBACK WndprocTasEditor(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lP
break;
}
break;
case ID_STRAY_UNPAUSE:
playback.UnpauseEmulation();
break;
}
break;
case WM_CLOSE:
@ -1325,6 +1322,9 @@ BOOL CALLBACK WndprocTasEditor(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lP
case ID_HELP_ABOUT:
DialogBox(fceu_hInstance, MAKEINTRESOURCE(IDD_TASEDITOR_ABOUT), taseditor_window.hwndTasEditor, AboutProc);
break;
case ID_STRAY_UNPAUSE:
playback.UnpauseEmulation();
break;
}