summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/darkmist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/darkmist.h')
-rw-r--r--src/mame/includes/darkmist.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/darkmist.h b/src/mame/includes/darkmist.h
index c3804c97a26..874fa2e227c 100644
--- a/src/mame/includes/darkmist.h
+++ b/src/mame/includes/darkmist.h
@@ -23,12 +23,12 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_spritebank;
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_workram;
- required_shared_ptr<UINT8> m_spriteram;
- optional_shared_ptr<UINT8> m_decrypted_opcodes;
+ required_shared_ptr<uint8_t> m_spritebank;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_workram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ optional_shared_ptr<uint8_t> m_decrypted_opcodes;
int m_hw;
tilemap_t *m_bgtilemap;
@@ -46,8 +46,8 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(darkmist);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void decrypt_fgbgtiles(UINT8* rgn, int size);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void decrypt_fgbgtiles(uint8_t* rgn, int size);
void decrypt_gfx();
void decrypt_snd();