summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/render.cpp
diff options
context:
space:
mode:
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;
- }
+ }
}
}