X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=r_modules.c;h=dd76b6cae9d4be1fcf74b17d74e09f2e85a0838e;hb=91c8c57e0608ab2eaf28b9ece97b1b060eb791a5;hp=904977146ece0e69771e7ebe2cb1a1838c4b5650;hpb=3d84db99ed9d8234809d237512f44cfa6d7ce1a0;p=xonotic%2Fdarkplaces.git diff --git a/r_modules.c b/r_modules.c index 90497714..dd76b6ca 100644 --- a/r_modules.c +++ b/r_modules.c @@ -55,9 +55,10 @@ void R_Modules_Start(void) continue; if (rendermodule[i].active) { - Con_Printf ("R_StartModules: module \"%s\" already active\n", rendermodule[i].name); + Con_Printf ("R_Modules_Start: module \"%s\" already active\n", rendermodule[i].name); continue; } + Con_DPrintf("Starting render module \"%s\"\n", rendermodule[i].name); rendermodule[i].active = 1; rendermodule[i].start(); } @@ -73,6 +74,7 @@ void R_Modules_Shutdown(void) continue; if (!rendermodule[i].active) continue; + Con_DPrintf("Stopping render module \"%s\"\n", rendermodule[i].name); rendermodule[i].active = 0; rendermodule[i].shutdown(); } @@ -81,7 +83,8 @@ void R_Modules_Shutdown(void) void R_Modules_Restart_f(cmd_state_t *cmd) { CL_StartVideo(); - Con_Print("restarting renderer\n"); + Con_Print("Restarting renderer\n"); + SCR_BeginLoadingPlaque(false); R_Modules_Shutdown(); R_Modules_Start(); }