summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ojankohs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ojankohs.h')
-rw-r--r--src/mame/includes/ojankohs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/ojankohs.h b/src/mame/includes/ojankohs.h
index 65c7e36bd9c..b9b516b0982 100644
--- a/src/mame/includes/ojankohs.h
+++ b/src/mame/includes/ojankohs.h
@@ -22,9 +22,9 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- optional_shared_ptr<UINT8> m_videoram;
- optional_shared_ptr<UINT8> m_colorram;
- optional_shared_ptr<UINT8> m_paletteram;
+ optional_shared_ptr<uint8_t> m_videoram;
+ optional_shared_ptr<uint8_t> m_colorram;
+ optional_shared_ptr<uint8_t> m_paletteram;
/* video-related */
tilemap_t *m_tilemap;
@@ -82,8 +82,8 @@ public:
DECLARE_MACHINE_START(ojankoc);
DECLARE_VIDEO_START(ojankoc);
DECLARE_MACHINE_START(common);
- UINT32 screen_update_ojankohs(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_ojankoc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ojankohs(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ojankoc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void ojankoc_flipscreen( address_space &space, int data );
DECLARE_WRITE_LINE_MEMBER(ojankohs_adpcm_int);
};