summaryrefslogtreecommitdiffstats
path: root/src/emu/render.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-03-30 08:35:21 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-03-30 08:35:21 +0200
commit913ab1e14041b81f3c9276ea3a7adfff32c0408c (patch)
treef4d630b889546e006e98de2ea05aa20d56c11303 /src/emu/render.cpp
parent21fe699db20e3354d92396d4a29f5fd648584437 (diff)
Cleanups and version bumpmame0172
Diffstat (limited to 'src/emu/render.cpp')
-rw-r--r--src/emu/render.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/render.cpp b/src/emu/render.cpp
index 62ad1e688cb..89fadf5e319 100644
--- a/src/emu/render.cpp
+++ b/src/emu/render.cpp
@@ -1202,7 +1202,7 @@ void render_target::compute_visible_area(INT32 target_width, INT32 target_height
// apply orientation if required
if (target_orientation & ORIENTATION_SWAP_XY)
src_aspect = 1.0 / src_aspect;
-
+
// get destination size and aspect
float dest_width = (float)target_width;
float dest_height = (float)target_height;
@@ -1228,7 +1228,7 @@ void render_target::compute_visible_area(INT32 target_width, INT32 target_height
visible_width = render_round_nearest(src_width * xscale);
visible_height = render_round_nearest(src_height * yscale);
break;
- }
+ }
}
}