From 01f49908879197b1715483321a9490dd71c8874b Mon Sep 17 00:00:00 2001 From: Stelios Tsampas Date: Mon, 31 Jul 2017 12:48:37 +0300 Subject: * Sync with codeplex branch (libpcsxcore, linux gui) This commit reflects mostly changes that happened in upstream since the last sync. Commit messages in upstream are lacking information. Most important changes are commented below, the rest of them are either formating or just trivial stuff. Memory viewer, invalidate dynarec gui/DebugMemory.c libpcsxcore/cdrom.c libpcsxcore/gpu.c libpcsxcore/misc.c libpcsxcore/psxdma.c Load binary files and psx executables libpcsxcore/misc.c libpcsxcore/misc.h libpcsxcore/plugin.c libpcsxcore/plugin.h Support for psxida libpcsxcore/debug.c libpcsxcore/r3000a.c plugins/bladesio1/connection.c disable loading save states with digits gui/Plugin.c Fix psxDIV in interpreter libpcsxcore/psxinterpreter.c --- gui/DebugMemory.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gui/DebugMemory.c') diff --git a/gui/DebugMemory.c b/gui/DebugMemory.c index 096b6c5c..9bd4d322 100755 --- a/gui/DebugMemory.c +++ b/gui/DebugMemory.c @@ -18,6 +18,7 @@ #include "Linux.h" #include "../libpcsxcore/psxmem.h" +#include "../libpcsxcore/r3000a.h" #include #define MEMVIEW_MAX_LINES 256 @@ -286,6 +287,9 @@ static void MemView_Patch() { } psxMemWrite8(addr, (u8)val); +#ifdef PSXREC + psxCpu->Clear(addr, 1); +#endif addr++; } -- cgit v1.2.3