mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- reduce message spam in the notification display.
This commit is contained in:
parent
8256b54005
commit
e97fb2ab7f
2 changed files with 11 additions and 13 deletions
|
@ -433,7 +433,7 @@ void StartLevel(MapRecord *level)
|
||||||
|
|
||||||
#ifdef NOONE_EXTENSIONS
|
#ifdef NOONE_EXTENSIONS
|
||||||
if (!gModernMap)
|
if (!gModernMap)
|
||||||
Printf("> Modern types erased: %d.\n", modernTypesErased);
|
Printf(PRINT_NONOTIFY, "> Modern types erased: %d.\n", modernTypesErased);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
startpos.z = getflorzofslope(startsectnum,startpos.x,startpos.y);
|
startpos.z = getflorzofslope(startsectnum,startpos.x,startpos.y);
|
||||||
|
@ -715,10 +715,10 @@ void GameInterface::app_init()
|
||||||
|
|
||||||
HookReplaceFunctions();
|
HookReplaceFunctions();
|
||||||
|
|
||||||
Printf("Initializing Build 3D engine\n");
|
Printf(PRINT_NONOTIFY, "Initializing Build 3D engine\n");
|
||||||
engineInit();
|
engineInit();
|
||||||
|
|
||||||
Printf("Loading tiles\n");
|
Printf(PRINT_NONOTIFY, "Loading tiles\n");
|
||||||
if (!tileInit(0, NULL))
|
if (!tileInit(0, NULL))
|
||||||
I_FatalError("TILES###.ART files not found");
|
I_FatalError("TILES###.ART files not found");
|
||||||
|
|
||||||
|
@ -731,27 +731,25 @@ void GameInterface::app_init()
|
||||||
if (!loaddefinitionsfile(defsfile))
|
if (!loaddefinitionsfile(defsfile))
|
||||||
{
|
{
|
||||||
uint32_t etime = timerGetTicks();
|
uint32_t etime = timerGetTicks();
|
||||||
Printf("Definitions file \"%s\" loaded in %d ms.\n", defsfile, etime - stime);
|
Printf(PRINT_NONOTIFY, "Definitions file \"%s\" loaded in %d ms.\n", defsfile, etime - stime);
|
||||||
}
|
}
|
||||||
powerupInit();
|
powerupInit();
|
||||||
Printf("Loading cosine table\n");
|
Printf(PRINT_NONOTIFY, "Loading cosine table\n");
|
||||||
trigInit();
|
trigInit();
|
||||||
Printf("Initializing view subsystem\n");
|
Printf(PRINT_NONOTIFY, "Initializing view subsystem\n");
|
||||||
viewInit();
|
viewInit();
|
||||||
Printf("Initializing dynamic fire\n");
|
Printf(PRINT_NONOTIFY, "Initializing dynamic fire\n");
|
||||||
FireInit();
|
FireInit();
|
||||||
Printf("Initializing weapon animations\n");
|
Printf(PRINT_NONOTIFY, "Initializing weapon animations\n");
|
||||||
WeaponInit();
|
WeaponInit();
|
||||||
LoadSaveSetup();
|
LoadSaveSetup();
|
||||||
LoadSavedInfo();
|
LoadSavedInfo();
|
||||||
Printf("Loading control setup\n");
|
|
||||||
ctrlInit();
|
|
||||||
timerInit(120);
|
timerInit(120);
|
||||||
|
|
||||||
Printf("Initializing network users\n");
|
Printf(PRINT_NONOTIFY, "Initializing network users\n");
|
||||||
netInitialize(true);
|
netInitialize(true);
|
||||||
videoInit();
|
videoInit();
|
||||||
Printf("Initializing sound system\n");
|
Printf(PRINT_NONOTIFY, "Initializing sound system\n");
|
||||||
sndInit();
|
sndInit();
|
||||||
registerosdcommands();
|
registerosdcommands();
|
||||||
registerinputcommands();
|
registerinputcommands();
|
||||||
|
|
|
@ -3687,7 +3687,7 @@ void PolymostProcessVoxels(void)
|
||||||
|
|
||||||
g_haveVoxels = 2;
|
g_haveVoxels = 2;
|
||||||
|
|
||||||
Printf("Generating voxel models for Polymost. This may take a while...\n");
|
Printf(PRINT_NONOTIFY, "Generating voxel models for Polymost. This may take a while...\n");
|
||||||
|
|
||||||
for (bssize_t i = 0; i < MAXVOXELS; i++)
|
for (bssize_t i = 0; i < MAXVOXELS; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue