summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/snes_ppu.h
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-03 18:37:14 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-03 18:37:14 +0200
commitfcffa54b2bd38840a78bb1c9d4d9da74f5a76163 (patch)
tree5f481ceac4036a4aff03609d8d97409cc2352fbc /src/devices/video/snes_ppu.h
parentb846a31d12b3a79e6a00332fbee1b6c9128e26bf (diff)
drivers starting with p, q, r and s: some macro removal (nw)
Diffstat (limited to 'src/devices/video/snes_ppu.h')
-rw-r--r--src/devices/video/snes_ppu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/snes_ppu.h b/src/devices/video/snes_ppu.h
index 7f1bb18a49c..77c13b4dfca 100644
--- a/src/devices/video/snes_ppu.h
+++ b/src/devices/video/snes_ppu.h
@@ -52,8 +52,8 @@ public:
int16_t current_y() const { return screen().vpos(); }
void set_latch_hv(int16_t x, int16_t y);
- uint8_t read(address_space &space, uint32_t offset, uint8_t wrio_bit7);
- void write(address_space &space, uint32_t offset, uint8_t data);
+ uint8_t read(uint32_t offset, uint8_t wrio_bit7);
+ void write(uint32_t offset, uint8_t data);
int vtotal() const { return ((m_stat78 & 0x10) == SNES_NTSC) ? SNES_VTOTAL_NTSC : SNES_VTOTAL_PAL; }
uint16_t htmult() const { return m_htmult; }