]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Put the loading plaque back in Host_Main for now, so resolution is unbroken
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 20 Jun 2020 15:40:08 +0000 (15:40 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 20 Jun 2020 15:40:08 +0000 (15:40 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12708 d7cf8633-e32d-0410-b094-e92efae38249

cl_main.c
host.c

index fa2e66e515a2dfb9365ae6247e083504dc0882a2..b03292c934bdc417c7b6d827f7b832edc4bdc9e2 100644 (file)
--- a/cl_main.c
+++ b/cl_main.c
@@ -2778,9 +2778,6 @@ void CL_Init (void)
                CL_Video_Init();
                Host_StartVideo();
 
-               // put up the loading image so the user doesn't stare at a black screen...
-               SCR_BeginLoadingPlaque(true);
-               
                #ifdef CONFIG_MENU
                Cbuf_InsertText(&cmd_client,"menu_start\n");
                #endif
diff --git a/host.c b/host.c
index aa4a7f3045d3b16ff47d40f8c2626cfa2405e79c..b264324d1854850b0c9573792678c367b24a8695 100644 (file)
--- a/host.c
+++ b/host.c
@@ -1304,6 +1304,9 @@ static void Host_Init (void)
 
        Log_Start();
 
+       // put up the loading image so the user doesn't stare at a black screen...
+       SCR_BeginLoadingPlaque(true);
+       
        // check for special benchmark mode
 // COMMANDLINEOPTION: Client: -benchmark <demoname> runs a timedemo and quits, results of any timedemo can be found in gamedir/benchmark.log (for example id1/benchmark.log)
        i = COM_CheckParm("-benchmark");