summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-01-05 15:44:17 +0100
committer hap <happppp@users.noreply.github.com>2020-01-05 15:44:30 +0100
commit1329bdb41269ed5aa251a68826ce1026b12ebe2b (patch)
treee74fc43e85e2bfb7f06a1115319f4721cdfb310c /src/osd/sdl
parent8418276a5b43a7a2cc3b320579e69e835a32cfa1 (diff)
video: higher maximum prescale (nw)
Diffstat (limited to 'src/osd/sdl')
-rw-r--r--src/osd/sdl/video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/sdl/video.cpp b/src/osd/sdl/video.cpp
index 9fdb6b74c56..e7af55e56ba 100644
--- a/src/osd/sdl/video.cpp
+++ b/src/osd/sdl/video.cpp
@@ -254,7 +254,7 @@ void sdl_osd_interface::extract_video_config()
video_config.syncrefresh = 0;
}
- if (video_config.prescale < 1 || video_config.prescale > 3)
+ if (video_config.prescale < 1 || video_config.prescale > 8)
{
osd_printf_warning("Invalid prescale option, reverting to '1'\n");
video_config.prescale = 1;