From 68eafaee7f77ffe2b78d53942ea5ccbcde55a288 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Fri, 22 Jan 2010 20:17:49 +0000 Subject: [PATCH] Windows build fix This was SVN commit r7282. --- source/simulation2/Simulation2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/simulation2/Simulation2.cpp b/source/simulation2/Simulation2.cpp index 10b6e78b0d..f64cb556a7 100644 --- a/source/simulation2/Simulation2.cpp +++ b/source/simulation2/Simulation2.cpp @@ -67,7 +67,7 @@ public: #define LOAD_SCRIPTED_COMPONENT(name) \ cid = m_ComponentManager.LookupCID(name); \ if (cid == CID__Invalid) \ - LOGERROR(L"Can't find component type " name); \ + LOGERROR(L"Can't find component type " L##name); \ m_ComponentManager.AddComponent(SYSTEM_ENTITY, cid, noParam) LOAD_SCRIPTED_COMPONENT("GuiInterface");