Skip to content

Commit

Permalink
..............
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoLuis0 committed Jan 11, 2023
1 parent ffa2532 commit ee883a9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/d_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3172,7 +3172,11 @@ static int D_InitGame(const FIWADInfo* iwad_info, TArray<FString>& allwads, TArr
TexMan.Init();

if (!batchrun) Printf ("V_Init: allocate screen.\n");
if (!restart || (restart_multiplayer && defined(_WIN32)))
#ifdef _WIN32
if (!restart || restart_multiplayer)
#else
if (!restart)
#endif
{
V_InitScreenSize();
// This allocates a dummy framebuffer as a stand-in until V_Init2 is called.
Expand Down

0 comments on commit ee883a9

Please sign in to comment.