diff options
author | 2018-01-13 21:59:19 +0100 | |
---|---|---|
committer | 2018-01-13 22:13:38 +0100 | |
commit | 1905584a6b020a3815159660551d9c41d1b483b2 (patch) | |
tree | 28a47935fc1dba74d1cd740628a53d36e3287bd0 /src/devices/bus/gba/gba_slot.h | |
parent | 7f3f8fd245bafd66892fc3adf07aff9d009d0381 (diff) |
-gba: Use correct initial mapping for movie cartridges. Fixes v_sharkt, v_shrek, v_shrek2, probably others. [endrift, Ryan Holtz]
Diffstat (limited to 'src/devices/bus/gba/gba_slot.h')
-rw-r--r-- | src/devices/bus/gba/gba_slot.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/bus/gba/gba_slot.h b/src/devices/bus/gba/gba_slot.h index d2c042b3ba9..c946fd71c57 100644 --- a/src/devices/bus/gba/gba_slot.h +++ b/src/devices/bus/gba/gba_slot.h @@ -98,8 +98,6 @@ public: int get_type() { return m_type; } static int get_cart_type(const uint8_t *ROM, uint32_t len); - void internal_header_logging(uint8_t *ROM, uint32_t len); - void save_nvram() { if (m_cart && m_cart->get_nvram_size()) m_cart->save_nvram(); } uint32_t get_rom_size() { if (m_cart) return m_cart->get_rom_size(); return 0; } |