@@ -36,7 +36,7 @@ namespace crown
#ifdef WINDOWS
#define LUAJIT "luajit.exe"
-#elif
+#else
#define LUAJIT "./luajit"
#endif
@@ -210,6 +210,7 @@ void list_files(const char* path, Vector<DynamicString>& files)
const char* normalize_path(const char* path)
{
// Stub function
+ return path;
}
//-----------------------------------------------------------------------------
@@ -65,7 +65,7 @@ struct LoadResourceData
};
/// Loads resources in a background thread.
-class ResourceLoader : public os::Thread
+class ResourceLoader : public Thread
public: