1. Update help document for new features.
2. Fixed "FamicomDiskSytem" typo in hnd file. 3. Fixed a bug of RAM Watch.
This commit is contained in:
parent
16493b6dc8
commit
16e7619634
BIN
output/fceux.chm
BIN
output/fceux.chm
Binary file not shown.
|
@ -980,6 +980,12 @@ INT_PTR CALLBACK EditWatchProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
|
||||||
// get the address(es)
|
// get the address(es)
|
||||||
char str_addrs[1024];
|
char str_addrs[1024];
|
||||||
GetDlgItemText(hDlg, addrCtrlID, str_addrs, 1024);
|
GetDlgItemText(hDlg, addrCtrlID, str_addrs, 1024);
|
||||||
|
if (!str_addrs[0])
|
||||||
|
{
|
||||||
|
MessageBox(hDlg, "You must enter an address.", "Error", MB_OK | MB_ICONERROR);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
char* next = strtok(str_addrs, ",");
|
char* next = strtok(str_addrs, ",");
|
||||||
int i = 0;
|
int i = 0;
|
||||||
unsigned int addrSize = 4;
|
unsigned int addrSize = 4;
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue