diff options
author | 2009-01-15 08:33:24 +0000 | |
---|---|---|
committer | 2009-01-15 08:33:24 +0000 | |
commit | 7f2e4e19be32cc1a3b1f272e1a482dd201137ee1 (patch) | |
tree | 8ba4183de60c37fca1e6ffdea81c9269ba1bb0d0 /src/emu/tilemap.c | |
parent | 1b7793d0fbd99c653c3221116176f31735e1acd0 (diff) |
Cleanups and version bump.mame0129u1
Diffstat (limited to 'src/emu/tilemap.c')
-rw-r--r-- | src/emu/tilemap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/tilemap.c b/src/emu/tilemap.c index 1762ca9f3d0..d3a78256f01 100644 --- a/src/emu/tilemap.c +++ b/src/emu/tilemap.c @@ -255,7 +255,7 @@ INLINE tilemap *indexed_tilemap(int index) /*------------------------------------------------- - gfx_tiles_changed - return TRUE if any + gfx_tiles_changed - return TRUE if any gfx_elements used by this tilemap have changed -------------------------------------------------*/ @@ -1220,11 +1220,11 @@ static void pixmap_update(tilemap *tmap, const rectangle *cliprect) { int mincol, maxcol, minrow, maxrow; int row, col; - + /* if the graphics changed, we need to mark everything dirty */ if (gfx_elements_changed(tmap)) tilemap_mark_all_tiles_dirty(tmap); - + /* if everything is clean, do nothing */ if (tmap->all_tiles_clean) return; |