summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/stic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/stic.h')
-rw-r--r--src/mess/video/stic.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mess/video/stic.h b/src/mess/video/stic.h
index e5c83699a07..fa8a8a8a1ee 100644
--- a/src/mess/video/stic.h
+++ b/src/mess/video/stic.h
@@ -476,7 +476,7 @@ public:
// construction/destruction
stic_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual ~stic_device();
-
+
DECLARE_READ16_MEMBER(read);
DECLARE_READ16_MEMBER(gram_read);
DECLARE_READ16_MEMBER(grom_read) { if (offset > 0x800) printf("help! %X\n", offset); return (0xff00 | m_grom_region->base()[offset]); }
@@ -488,17 +488,17 @@ public:
int read_stic_handshake() { return m_stic_handshake; }
void set_x_scale(int val) { m_x_scale = val; }
void set_y_scale(int val) { m_y_scale = val; }
-
+
// device-level overrides
virtual void device_start();
virtual const rom_entry *device_rom_region() const;
virtual void device_reset();
-
+
void screenrefresh();
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
private:
-
+
required_memory_region m_grom_region;
void intv_set_pixel(bitmap_ind16 &bitmap, int x, int y, UINT32 color);
@@ -514,14 +514,14 @@ private:
void copy_sprites_to_background(bitmap_ind16 &bitmap);
void render_background(bitmap_ind16 &bitmap);
void draw_borders(bitmap_ind16 &bitmap);
-
+
#ifdef UNUSED_CODE
void draw_background(bitmap_ind16 &bitmap, int transparency);
void draw_sprites(bitmap_ind16 &bitmap, int behind_foreground);
#endif
-
+
bitmap_ind16 m_bitmap;
-
+
intv_sprite_type m_sprite[STIC_MOBS];
UINT8 m_sprite_buffers[STIC_MOBS][STIC_CARD_WIDTH * 2][STIC_CARD_HEIGHT * 4 * 2 * 2];
UINT16 m_backtab_buffer[STIC_BACKTAB_HEIGHT][STIC_BACKTAB_WIDTH];
@@ -539,7 +539,7 @@ private:
UINT8 m_gramdirty;
UINT8 m_gram[512];
- UINT8 m_gramdirtybytes[512];
+ UINT8 m_gramdirtybytes[512];
};
// device type definition