diff options
Diffstat (limited to 'src/emu/tilemap.cpp')
-rw-r--r-- | src/emu/tilemap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/tilemap.cpp b/src/emu/tilemap.cpp index 999143f4c32..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++; } |