Win32 - Memwatch - oops

This commit is contained in:
adelikat 2008-12-20 23:31:17 +00:00
parent cba3dd6025
commit 75a04affe9
2 changed files with 4 additions and 2 deletions

View File

@ -169,7 +169,9 @@ int DetectMMC5WRAMSize(uint32 crc32)
//but I changed it to return 64 because unlisted carts are probably homebrews, and they should probably use 64 (why not use it all?)
//ch4 10/12/08 - then f***ng for what all this shit above? let's give em all this 64k shit! Damn
// homebrew must use it's own emulators or standart features.
return 8;
//adelikat 12/20/08 - reverting back to return 64, sounds like it was changed back to 8 simply on principle. FCEUX is all encompassing, and that include
//rom-hacking. We want it to be the best emulator for such purposes. So unless return 64 harms compatibility with anything else, I see now reason not to have it
return 64;
}
static void BuildWRAMSizeTable(void)

View File

@ -1067,7 +1067,7 @@ void CollapseWindow(void)
ChangeMemwMenuItemText(MEMW_OPTIONS_EXPANDCOLLAPSE, "Collapse to 1 column");
}
SetWindowPos(hwndMemWatch,HWND_TOPMOST,MemWatch_wndx,MemWatch_wndy,(wrect.right-wrect.left),(wrect.bottom-wrect.top),SWP_SHOWWINDOW);
SetWindowPos(hwndMemWatch,NULL,MemWatch_wndx,MemWatch_wndy,(wrect.right-wrect.left),(wrect.bottom-wrect.top),NULL);
}