Skip to content

Commit 2c26dd4

Browse files
committed
Fix default debug output scale
1 parent afdfd1e commit 2c26dd4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

platforms/shared/desktop/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ void config_read(void)
262262
config_debug.dis_replace_labels = read_bool("Debug", "DisReplaceLabels", true);
263263
config_debug.dis_look_ahead_count = read_int("Debug", "DisLookAheadCount", 20);
264264
config_debug.font_size = read_int("Debug", "FontSize", 0);
265-
config_debug.scale = read_int("Debug", "Scale", 1);
265+
config_debug.scale = read_int("Debug", "Scale", 2);
266266
config_debug.multi_viewport = read_bool("Debug", "MultiViewport", false);
267267
config_debug.single_instance = read_bool("Debug", "SingleInstance", false);
268268
config_debug.auto_debug_settings = read_bool("Debug", "AutoDebugSettings", false);

platforms/shared/desktop/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ struct config_Debug
235235
bool dis_replace_labels = true;
236236
int dis_look_ahead_count = 20;
237237
int font_size = 0;
238-
int scale = 1;
238+
int scale = 2;
239239
bool multi_viewport = false;
240240
bool single_instance = false;
241241
bool auto_debug_settings = false;

0 commit comments

Comments
 (0)