Win32 - fix bug - cheats dialog - toggling a cheat in the cheats list box now updates active cheats count
This commit is contained in:
parent
d9f59e45f6
commit
9149cf5326
|
@ -1,3 +1,4 @@
|
|||
01-march-2010 - adelikat - win32 - cheats dialog - toggling a cheat in the cheats list now updates the active cheats count
|
||||
01-march-2010 - adelikat - win32 - a disable movie messages menu item
|
||||
25-feb-2010 - prockguy - unix netplay is now functional; gtk network gui created
|
||||
24-feb-2010 - prockguy - GTK - added basic movie controls
|
||||
|
|
|
@ -488,6 +488,7 @@ BOOL CALLBACK CheatConsoleCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
|||
SendDlgItemMessage(hwndDlg,IDC_LIST_CHEATS,LB_DELETESTRING,selcheat,0);
|
||||
SendDlgItemMessage(hwndDlg,IDC_LIST_CHEATS,LB_INSERTSTRING,selcheat,(LPARAM)(LPSTR)str);
|
||||
SendDlgItemMessage(hwndDlg,IDC_LIST_CHEATS,LB_SETCURSEL,selcheat,0);
|
||||
UpdateCheatsAdded();
|
||||
UpdateColorTable();
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue