fix level logging during multi.level demos

This commit is contained in:
Fabian Greffrath 2025-01-12 14:54:05 +01:00
parent b88073123d
commit d915c1845e

View File

@ -31,7 +31,7 @@ typedef enum
VB_MAX
} verbosity_t;
#define VB_DEMO (gameaction == ga_playdemo ? VB_INFO : VB_DEBUG)
#define VB_DEMO (gameaction == ga_playdemo || demoplayback ? VB_INFO : VB_DEBUG)
int I_ConsoleStdout(void);