Browse Source

Fix missing comma

Daniele Bartolini 11 years ago
parent
commit
93c86afa26
1 changed files with 2 additions and 2 deletions
  1. 2 2
      engine/resource/lua_resource.cpp

+ 2 - 2
engine/resource/lua_resource.cpp

@@ -58,9 +58,9 @@ namespace lua_resource
 		const char* luajit[] =
 		{
 #if CROWN_PLATFORM_LINUX
-			"./luajit"
+			"./luajit",
 #else
-			"luajit.exe"
+			"luajit.exe",
 #endif // CROWN_PLATFORM_LINUX
 			LUAJIT_FLAGS,
 			res_abs_path.c_str(),