summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sprite.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sprite.c')
-rw-r--r--src/emu/sprite.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/sprite.c b/src/emu/sprite.c
index ed9ee12634b..424bed2625d 100644
--- a/src/emu/sprite.c
+++ b/src/emu/sprite.c
@@ -45,17 +45,17 @@
sparse_dirty_bitmap::sparse_dirty_bitmap(int granularity)
: m_width(0),
- m_height(0),
- m_granularity(granularity),
- m_rect_list_bounds(0, -1, 0, -1)
+ m_height(0),
+ m_granularity(granularity),
+ m_rect_list_bounds(0, -1, 0, -1)
{
}
sparse_dirty_bitmap::sparse_dirty_bitmap(int width, int height, int granularity)
: m_width(0),
- m_height(0),
- m_granularity(granularity),
- m_rect_list_bounds(0, -1, 0, -1)
+ m_height(0),
+ m_granularity(granularity),
+ m_rect_list_bounds(0, -1, 0, -1)
{
// resize to the specified width/height
resize(width, height);