Skip to content

Commit

Permalink
Setup: small corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
JNechaevsky committed Jun 12, 2023
1 parent 0410369 commit 6ee743e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/setup/display.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ static int window_width = 640, window_height = 480;
static int max_scaling_buffer_pixels = 16000000;
static int usegamma = 0;

int graphical_startup = 1;
int show_endoom = 0; // [JN] disable
int graphical_startup = 0; // [JN] disable
int show_endoom = 0; // [JN] disable
int show_diskicon = 1;
int png_screenshots = 1;

Expand Down
6 changes: 5 additions & 1 deletion src/setup/mainmenu.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,12 @@ void MainMenu(void)
txt_window_t *window;
txt_window_action_t *quit_action;
txt_window_action_t *warp_action;
static boolean colors_initialized = false;

// [JN] Use different coloring for non-Doom games.
// TODO - didn't work in separated build.
/*
static boolean colors_initialized = false;
if (!colors_initialized)
{
if (gamemission == heretic)
Expand All @@ -215,6 +218,7 @@ void MainMenu(void)
}
colors_initialized = true;
}
*/

window = TXT_NewWindow("Main Menu");

Expand Down

0 comments on commit 6ee743e

Please sign in to comment.