From 0059c96784766d97fc5fa0958ef298ac905af292 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 9 Feb 2019 01:47:41 +0100 Subject: [PATCH] small code cleanup (using same order of variables and references to them) --- src/files.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/files.c b/src/files.c index 6b0aea9e..be481d0d 100644 --- a/src/files.c +++ b/src/files.c @@ -8935,14 +8935,6 @@ static struct TokenInfo internal_setup_tokens[] = TYPE_STRING, &setup.internal.default_level_series, "default_level_series" }, - { - TYPE_BOOLEAN, - &setup.internal.choose_from_top_leveldir, "choose_from_top_leveldir" - }, - { - TYPE_BOOLEAN, - &setup.internal.show_scaling_in_title, "show_scaling_in_title" - }, { TYPE_INTEGER, &setup.internal.default_window_width, "default_window_width" @@ -8951,6 +8943,14 @@ static struct TokenInfo internal_setup_tokens[] = TYPE_INTEGER, &setup.internal.default_window_height, "default_window_height" }, + { + TYPE_BOOLEAN, + &setup.internal.choose_from_top_leveldir, "choose_from_top_leveldir" + }, + { + TYPE_BOOLEAN, + &setup.internal.show_scaling_in_title, "show_scaling_in_title" + }, { TYPE_BOOLEAN, &setup.internal.menu_game, "menu_game" -- 2.34.1