mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Replace all print calls with vlog calls
This is pretty straight-forward to do.
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
#include "Map.h"
|
||||
#include "Music.h"
|
||||
#include "UtilityClass.h"
|
||||
#include "Vlogging.h"
|
||||
#include "Xoshiro.h"
|
||||
|
||||
scriptclass::scriptclass(void)
|
||||
@@ -2323,7 +2324,7 @@ void scriptclass::run(void)
|
||||
if (execution_counter == SHRT_MAX)
|
||||
{
|
||||
// We must be in an infinite loop
|
||||
printf("Warning: execution counter got to %i, stopping script\n", SHRT_MAX);
|
||||
vlog_warn("Warning: execution counter got to %i, stopping script", SHRT_MAX);
|
||||
running = false;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user