]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/debug/memorybrowser.cpp
Minor update to debugger; added autoupdating to CPU/MEM windows.
[virtualjaguar] / src / gui / debug / memorybrowser.cpp
index 45bae7f7883f87d2a1b2259db8754bd7a69fb627..42bdddf95dad196c0b1f54deb5b45026e8dad555 100644 (file)
@@ -79,7 +79,7 @@ void MemoryBrowserWindow::RefreshContents(void)
                        if (c == 0x20)
                                sprintf(buf, " ");
 
-                       if ((c < 0x20) || ((c > 0x7F) && (c < 0xA0)))
+                       if ((c < 0x20) || (c > 0x7E))
                                sprintf(buf, ".");
 
                        strcat(string, buf);