About Store Forum Documentation Contact



Post Reply 
RPG2 compile fail, missing pak
Author Message
VicToMeyeZR Offline
Member

Post: #1
RPG2 compile fail, missing pak
1>Source\Main.cpp(85): fatal error C1083: Cannot open include file: '../Paks.add(data.pak).cpp': No such file or directory


Is there supposed to be a PAK file in the download somewhere?
Not there.
05-07-2012 01:01 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: RPG2 compile fail, missing pak
Hello,

please replace that part
Code:
#ifdef MOBILE
    Paks.add("Data.pak");
#elif defined DEBUG
   DataPath("Data");
#else
   #include "../Paks.add(data.pak).cpp" // this includes source for loading the "data.pak" with custom decryption keys (this source and decryption keys are not included in the source codes!)
#endif
with
Code:
DataPath("Data");
05-07-2012 04:52 AM
Find all posts by this user Quote this message in a reply
Post Reply