diff options
author | 2015-11-15 13:07:26 +0100 | |
---|---|---|
committer | 2015-11-15 13:07:26 +0100 | |
commit | 5200f15ace282ad246bd38af900472db353ba241 (patch) | |
tree | 93532e9717e2284223243dcba1ffddeff479e790 /src/emu/tilemap.cpp | |
parent | 2844aa7b02e3e76abc6e6707ebba0d6fa1c092be (diff) | |
parent | 15f6df6d66146007b7052d5efaa4513cdfd4ac79 (diff) |
Merge remote-tracking branch 'remotes/mamedev/master'
Diffstat (limited to 'src/emu/tilemap.cpp')
-rw-r--r-- | src/emu/tilemap.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/emu/tilemap.cpp b/src/emu/tilemap.cpp index 6f61210355b..29af574443a 100644 --- a/src/emu/tilemap.cpp +++ b/src/emu/tilemap.cpp @@ -1355,7 +1355,7 @@ void tilemap_t::draw_roz_core(screen_device &screen, _BitmapClass &destbitmap, c // advance in X cx += incxx; x++; - dest++; + ++dest; pri++; } } @@ -1395,7 +1395,7 @@ void tilemap_t::draw_roz_core(screen_device &screen, _BitmapClass &destbitmap, c cx += incxx; cy += incxy; x++; - dest++; + ++dest; pri++; } @@ -1436,7 +1436,7 @@ void tilemap_t::draw_roz_core(screen_device &screen, _BitmapClass &destbitmap, c cx += incxx; cy += incxy; x++; - dest++; + ++dest; pri++; } @@ -1589,7 +1589,8 @@ const device_type TILEMAP = &device_creator<tilemap_device>; tilemap_device::tilemap_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, TILEMAP, "Tilemap", tag, owner, clock, "tilemap", __FILE__), m_gfxdecode(*this), - m_standard_mapper(TILEMAP_STANDARD_COUNT), + m_standard_mapper(TILEMAP_STANDARD_COUNT), + m_bytes_per_entry(0), m_tile_width(8), m_tile_height(8), m_num_columns(64), |