From 4c5f41e86ad606f9c36c2fe57073bb9f48fc58e8 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Tue, 26 Apr 2022 13:07:01 +0700 Subject: [PATCH] enable hires and uncapped by default (#527) --- Source/m_misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/m_misc.c b/Source/m_misc.c index 8a6552bb..fa79d78b 100644 --- a/Source/m_misc.c +++ b/Source/m_misc.c @@ -135,7 +135,7 @@ default_t defaults[] = { { // killough 11/98: hires "hires", (config_t *) &hires, NULL, - {0}, {0,1}, number, ss_gen, wad_no, + {1}, {0,1}, number, ss_gen, wad_no, "1 to enable 640x400 resolution for rendering scenes" }, @@ -2131,7 +2131,7 @@ default_t defaults[] = { { "uncapped", (config_t *) &uncapped, NULL, - {0}, {0, 1}, number, ss_none, wad_no, + {1}, {0, 1}, number, ss_none, wad_no, "1 to enable uncapped rendering frame rate" },