Remove debug artifact

This commit is contained in:
wheremyfoodat 2023-09-29 17:31:32 +03:00 committed by GitHub
parent 89ed176d97
commit 1c179d9040
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,15 +1,7 @@
#include "emulator.hpp"
#ifdef PANDA3DS_FRONTEND_QT
#include <QApplication>
#endif
int main(int argc, char *argv[]) {
Emulator emu;
#ifdef PANDA3DS_FRONTEND_QT
QApplication app(argc, argv);
return app.exec();
#endif
emu.initGraphicsContext();
if (argc > 1) {
@ -23,4 +15,4 @@ int main(int argc, char *argv[]) {
}
emu.run();
}
}