diff options
Diffstat (limited to 'src/emu/render.c')
| -rw-r--r-- | src/emu/render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/render.c b/src/emu/render.c index 9f3f69604aa..527b20250a5 100644 --- a/src/emu/render.c +++ b/src/emu/render.c @@ -1411,7 +1411,7 @@ void render_target_compute_visible_area(render_target *target, INT32 target_widt if (target_pixel_aspect != 0.0f) { /* start with the aspect ratio of the square pixel layout */ - width = (target->layerconfig & LAYER_CONFIG_ZOOM_TO_SCREEN) ? target->curview->scraspect : target->curview->aspect; + width = ((target->layerconfig & LAYER_CONFIG_ZOOM_TO_SCREEN) && target->curview->screens > 0) ? target->curview->scraspect : target->curview->aspect; height = 1.0f; /* first apply target orientation */ |
