diff options
author | 2019-02-19 08:26:20 -0500 | |
---|---|---|
committer | 2019-02-19 08:27:08 -0500 | |
commit | 36012553a7ec25ce6f93de556b30cd8d3ecfb998 (patch) | |
tree | 677ede3720e8ef92bbeaa3dcac09f04b2f58a36b /src/devices/bus/c64/std.h | |
parent | d85f8b5d0ded785f0d5abe913fecf47586df9b32 (diff) |
bus/c64: Eliminate address_space arguments from handlers (nw)
Diffstat (limited to 'src/devices/bus/c64/std.h')
-rw-r--r-- | src/devices/bus/c64/std.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/c64/std.h b/src/devices/bus/c64/std.h index 8a2599fe7bd..391e9ac973f 100644 --- a/src/devices/bus/c64/std.h +++ b/src/devices/bus/c64/std.h @@ -34,7 +34,7 @@ protected: virtual void device_start() override; // device_c64_expansion_card_interface overrides - virtual uint8_t c64_cd_r(address_space &space, offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) override; + virtual uint8_t c64_cd_r(offs_t offset, uint8_t data, int sphi2, int ba, int roml, int romh, int io1, int io2) override; }; |