From 1c179d90408cafca866b03b1aaa1ef03d4126046 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Fri, 29 Sep 2023 17:31:32 +0300 Subject: [PATCH] Remove debug artifact --- src/main.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 19badf12..e24d4744 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,15 +1,7 @@ #include "emulator.hpp" -#ifdef PANDA3DS_FRONTEND_QT -#include -#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(); -} \ No newline at end of file +}