diff options
| author | 2014-10-29 14:28:11 +0100 | |
|---|---|---|
| committer | 2014-10-29 14:28:11 +0100 | |
| commit | 084b66dfd80aa04b79785cf7142f1e6dba0fd753 (patch) | |
| tree | ac12b7f632ef8c9a517cda0948646fa215f75254 | |
| parent | ff05864ad85b27dc660b7746bf92671b460c7d4d (diff) | |
fixed usage of uninitialized member in snes_ppu_device (nw)
happened with e.g. snes -cart sdf1gpp
| -rw-r--r-- | src/emu/video/snes_ppu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/video/snes_ppu.c b/src/emu/video/snes_ppu.c index 929ed11623f..e41f2f00bd3 100644 --- a/src/emu/video/snes_ppu.c +++ b/src/emu/video/snes_ppu.c @@ -380,6 +380,8 @@ void snes_ppu_device::device_reset() m_cgram_address = 0; m_read_ophct = 0; m_read_opvct = 0; + + m_vmadd = 0; PPU_REG(VMAIN) = 0x80; // what about other regs? |
