From 5895703ac465e8fa5c49f4da7540a0733f1d6431 Mon Sep 17 00:00:00 2001 From: fgenesis Date: Tue, 25 Jun 2024 04:53:31 +0200 Subject: [PATCH] derp --- BBGE/Core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BBGE/Core.cpp b/BBGE/Core.cpp index 885e404..78a61db 100644 --- a/BBGE/Core.cpp +++ b/BBGE/Core.cpp @@ -92,10 +92,10 @@ static void _TextureFileChanged(const std::string& fn, DirWatcher::Action act, v case TextureMgr::RELOADED_OK: break; // all good case TextureMgr::FILE_ERROR: - debugLog("Texture [" + fn + "] is not loaded in-game, ignoring"); + debugLog("_TextureFileChanged(): There was an issue reloading " + fn); break; case TextureMgr::NOT_LOADED: - debugLog("_TextureFileChanged(): There was an issue reloading " + fn); + debugLog("Texture [" + fn + "] is not loaded in-game, ignoring"); break; } }