Code:
#define PRAGMA_PATH "%EXEDIR%\\data\\object"
#define PRAGMA_PATH "%EXEDIR%\\data\\terrain"
#define PRAGMA_PATH "%EXEDIR%\\data\\image"
#define PRAGMA_PATH "%EXEDIR%\\data\\leveldata"
#define PRAGMA_PATH "data\\object"
#define PRAGMA_PATH "data\\terrain"
#define PRAGMA_PATH "data\\image"
#define PRAGMA_PATH "data\\leveldata"
add_folder("%EXEDIR%\\data\\object");
add_folder("%EXEDIR%\\data\\terrain");
add_folder("%EXEDIR%\\data\\image");
add_folder("%EXEDIR%\\data\\leveldata");
add_folder("\\data\\object");
add_folder("\\data\\terrain");
add_folder("\\data\\image");
add_folder("\\data\\leveldata");


I have a folder called data and within that several other folders.

When testing the level in sed (i.e. clicking run) it will work fine HOWEVER when I compile to exe it never works. I've tried all the above combinations and it just won't do it. It just can't find level entities files.

Anyone know the solution to my file woes?