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:
owomomo 2020-12-23 00:41:27 +08:00
parent 16493b6dc8
commit 16e7619634
3 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@ -980,6 +980,12 @@ INT_PTR CALLBACK EditWatchProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
// get the address(es)
char 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, ",");
int i = 0;
unsigned int addrSize = 4;

Binary file not shown.