Someone had made ifdefs that were confusing if compiling for Xbox. The conflictual situations have been resolved.

This commit is contained in:
Renaud Lepage
2005-05-30 23:43:37 +00:00
parent ee5e506200
commit 1b124c16a5
6 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -14,11 +14,10 @@
LuaManager *LUA = NULL;
static LuaFunctionList *g_LuaFunctions = NULL;
#if defined(_MSC_VER)
#if defined(_MSC_VER) && !defined(_XBOX)
#pragma comment(lib, "lua-5.0/lib/LibLua.lib")
#pragma comment(lib, "lua-5.0/lib/LibLuaLib.lib")
#endif
#if defined(_XBOX)
#elif defined(_XBOX)
#pragma comment(lib, "lua-5.0/lib/LibLuaXbox.lib")
#pragma comment(lib, "lua-5.0/lib/LibLuaLibXbox.lib")
#endif