summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/macrossp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/macrossp.h')
-rw-r--r--src/mame/includes/macrossp.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mame/includes/macrossp.h b/src/mame/includes/macrossp.h
index 09f651b2555..e2979d5210e 100644
--- a/src/mame/includes/macrossp.h
+++ b/src/mame/includes/macrossp.h
@@ -42,22 +42,22 @@ public:
}
/* memory pointers */
- required_shared_ptr<UINT32> m_spriteram;
- required_shared_ptr<UINT32> m_scra_videoram;
- required_shared_ptr<UINT32> m_scra_linezoom;
- required_shared_ptr<UINT32> m_scra_videoregs;
- required_shared_ptr<UINT32> m_scrb_videoram;
- required_shared_ptr<UINT32> m_scrb_linezoom;
- required_shared_ptr<UINT32> m_scrb_videoregs;
- required_shared_ptr<UINT32> m_scrc_videoram;
- required_shared_ptr<UINT32> m_scrc_linezoom;
- required_shared_ptr<UINT32> m_scrc_videoregs;
- required_shared_ptr<UINT32> m_text_videoram;
- required_shared_ptr<UINT32> m_text_linezoom;
- required_shared_ptr<UINT32> m_text_videoregs;
- required_shared_ptr<UINT32> m_mainram;
- std::unique_ptr<UINT32[]> m_spriteram_old;
- std::unique_ptr<UINT32[]> m_spriteram_old2;
+ required_shared_ptr<uint32_t> m_spriteram;
+ required_shared_ptr<uint32_t> m_scra_videoram;
+ required_shared_ptr<uint32_t> m_scra_linezoom;
+ required_shared_ptr<uint32_t> m_scra_videoregs;
+ required_shared_ptr<uint32_t> m_scrb_videoram;
+ required_shared_ptr<uint32_t> m_scrb_linezoom;
+ required_shared_ptr<uint32_t> m_scrb_videoregs;
+ required_shared_ptr<uint32_t> m_scrc_videoram;
+ required_shared_ptr<uint32_t> m_scrc_linezoom;
+ required_shared_ptr<uint32_t> m_scrc_videoregs;
+ required_shared_ptr<uint32_t> m_text_videoram;
+ required_shared_ptr<uint32_t> m_text_linezoom;
+ required_shared_ptr<uint32_t> m_text_videoregs;
+ required_shared_ptr<uint32_t> m_mainram;
+ std::unique_ptr<uint32_t[]> m_spriteram_old;
+ std::unique_ptr<uint32_t[]> m_spriteram_old2;
/* video-related */
tilemap_t *m_scra_tilemap;
@@ -95,7 +95,7 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_macrossp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_macrossp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void screen_eof_macrossp(screen_device &screen, bool state);
void draw_sprites(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void draw_layer(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect, int layer, int linem, int pri);