diff --git a/src/drivers/win/ramwatch.cpp b/src/drivers/win/ramwatch.cpp index 89c9a3ef..f00ce94f 100644 --- a/src/drivers/win/ramwatch.cpp +++ b/src/drivers/win/ramwatch.cpp @@ -60,7 +60,8 @@ bool ResetWatches(); unsigned int GetCurrentValue(AddressWatcher& watch) { unsigned int x = 0; - if (watch.Size == 2) //Do little endian + //TODO: A similar if for 4-byte just to be through, but there shouldn't be any reason to have 4-byte on the NES! + if (watch.Size == 'w') //Do little endian { x = ReadValueAtHardwareAddress(watch.Address+1, 1) * 256; x += ReadValueAtHardwareAddress(watch.Address, 1);