diff -r 8d98ee0dc917 -r aee883858c90 src/main.cpp --- a/src/main.cpp Tue Mar 03 22:29:27 2015 +0200 +++ b/src/main.cpp Wed Mar 04 15:37:21 2015 +0200 @@ -42,12 +42,18 @@ const Matrix IdentityMatrix ({1.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 1.0f}); CFGENTRY (Bool, FirstStart, true) +#include "ldproject.h" // ============================================================================= // int main (int argc, char* argv[]) { QApplication app (argc, argv); + + LDProjectPtr proj = LDProject::LoadFromFile("argh.pk3"); + if (!proj) + Critical ("Couldn't open argh.pk3"); + return 0; app.setOrganizationName (APPNAME); app.setApplicationName (APPNAME); InitCrashCatcher();