summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2017-10-18 08:19:56 -0400
committer Scott Stone <tafoid@gmail.com>2017-10-18 08:19:56 -0400
commite3cdd178efc5d890266e0d9005845a663c59312b (patch)
treea5278319939434c699c051dc81ad6f3865faeb76 /src/osd/modules
parente94fb46f0b26dff4b772608ebf0f4e2db3b7629d (diff)
Top prescale value allowed via command-line is 3 (not 4) (nw)
Diffstat (limited to 'src/osd/modules')
-rw-r--r--src/osd/modules/lib/osdobj_common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/lib/osdobj_common.cpp b/src/osd/modules/lib/osdobj_common.cpp
index f2a961f746b..704ee399819 100644
--- a/src/osd/modules/lib/osdobj_common.cpp
+++ b/src/osd/modules/lib/osdobj_common.cpp
@@ -91,7 +91,7 @@ const options_entry osd_options::s_option_entries[] =
{ nullptr, nullptr, OPTION_HEADER, "OSD ACCELERATED VIDEO OPTIONS" },
{ OSDOPTION_FILTER ";glfilter;flt", "1", OPTION_BOOLEAN, "enable bilinear filtering on screen output" },
- { OSDOPTION_PRESCALE "(1-4)", "1", OPTION_INTEGER, "scale screen rendering by this amount in software" },
+ { OSDOPTION_PRESCALE "(1-3)", "1", OPTION_INTEGER, "scale screen rendering by this amount in software" },
#if USE_OPENGL
{ nullptr, nullptr, OPTION_HEADER, "OpenGL-SPECIFIC OPTIONS" },