summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/holy_quran.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/holy_quran.h')
-rw-r--r--src/devices/bus/msx_cart/holy_quran.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/msx_cart/holy_quran.h b/src/devices/bus/msx_cart/holy_quran.h
index 00ae6bc92f4..0b2bd1a06f8 100644
--- a/src/devices/bus/msx_cart/holy_quran.h
+++ b/src/devices/bus/msx_cart/holy_quran.h
@@ -13,7 +13,7 @@ class msx_cart_holy_quran : public device_t
, public msx_cart_interface
{
public:
- msx_cart_holy_quran(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ msx_cart_holy_quran(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -27,9 +27,9 @@ public:
void restore_banks();
private:
- UINT8 m_lookup_prot[256];
- UINT8 m_selected_bank[4];
- UINT8 *m_bank_base[4];
+ uint8_t m_lookup_prot[256];
+ uint8_t m_selected_bank[4];
+ uint8_t *m_bank_base[4];
bool m_decrypt;
};