summaryrefslogtreecommitdiffstats
path: root/src/emu/tilemap.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-14 12:54:08 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-14 19:05:18 +0100
commit61d05aacb8e680d998ffccd9306b859555db5d26 (patch)
treef18b770af12e7e37b56981a810d378aec5508b1b /src/emu/tilemap.cpp
parent904e13184ceee03c49219528ee0000774b9dd452 (diff)
Fixed some suggestions by ReSharper C++ (nw)
Diffstat (limited to 'src/emu/tilemap.cpp')
-rw-r--r--src/emu/tilemap.cpp6
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++;
}