]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/app.cpp
Initial attempt to get Jaguar core to run in the new GUI.
[virtualjaguar] / src / gui / app.cpp
index 9a2cdbfaddba548b5fef72f0fa73a35275ac319d..e878edfc9c206836db892fc13cb7cf572038f230 100644 (file)
@@ -14,6 +14,7 @@
 #include "app.h"
 
 #include <QApplication>
+#include "log.h"
 #include "mainwin.h"
 #include "types.h"
 
@@ -31,14 +32,17 @@ int main(int argc, char * argv[])
                }
        }
 
-       Q_INIT_RESOURCE(vj);    // This must the same name as the exe filename
+       Q_INIT_RESOURCE(virtualjaguar); // This must the same name as the exe filename
 //or is it the .qrc filename???
        // This is so we can pass this stuff using signal/slot mechanism...
 //ick  int id = qRegisterMetaType<uint32>();
 
+       LogInit("virtualjaguar.log");                           // Init logfile
        App app(argc, argv);                                            // Declare an instance of the application
 
-       return app.exec();                                                      // And run it!
+       int retVal = app.exec();                                        // And run it!
+       LogDone();                                                                      // Close logfile
+       return retVal;
 }
 
 // Main app constructor--we stick globally accessible stuff here...