From 4ed8a22f47005e26fab1ceb79f8a018c442705e0 Mon Sep 17 00:00:00 2001 From: turhope <41882328+turhope@users.noreply.github.com> Date: Mon, 30 Jul 2018 13:34:07 -0500 Subject: [PATCH] ppu.windowleft fix some games incorrectly show rogue vertical line on column 0 --- ppu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ppu.cpp b/ppu.cpp index f7fd2862..af25105f 100644 --- a/ppu.cpp +++ b/ppu.cpp @@ -2108,4 +2108,5 @@ void S9xSoftResetPPU (void) memset(&Memory.FillRAM[0x1000], 0, 0x1000); Memory.FillRAM[0x4201] = Memory.FillRAM[0x4213] = 0xff; + Memory.FillRAM[0x2126] = Memory.FillRAM[0x2128] = 1; }