From 9a7646ab74ea331d8c2b159d6b4dfefaf0da0e44 Mon Sep 17 00:00:00 2001 From: wmayer Date: Fri, 16 May 2025 13:25:36 +0200 Subject: [PATCH] Base: Fix typo --- src/Base/Type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/Type.cpp b/src/Base/Type.cpp index c86ed6a687..5197df66dc 100644 --- a/src/Base/Type.cpp +++ b/src/Base/Type.cpp @@ -125,7 +125,7 @@ void Type::importModule(const char* typeName) // lets load the module Interpreter().loadModule(mod.c_str()); #ifdef FC_LOGLOADMODULE - Console().log("Act: Module %s loaded through class %s \n", Mod.c_str(), typeName); + Console().log("Act: Module %s loaded through class %s \n", mod.c_str(), typeName); #endif loadModuleSet.insert(mod); }