diff --git a/Core/Core.cpp b/Core/Core.cpp
index 9367c82e2a..4bbc10b6a6 100644
--- a/Core/Core.cpp
+++ b/Core/Core.cpp
@@ -209,7 +209,11 @@ reswitch:
return;
}
Core_RunLoop();
+#if defined(USING_QT_UI) && !defined(USING_GLES2)
+ return;
+#else
continue;
+#endif
}
switch (coreState)
diff --git a/Qt/PPSSPP.pro b/Qt/PPSSPP.pro
index c99c674916..8374f127ac 100755
--- a/Qt/PPSSPP.pro
+++ b/Qt/PPSSPP.pro
@@ -44,7 +44,7 @@ linux {
# Main
SOURCES += ../native/base/QtMain.cpp
-HEADERS += ../native/base/QtMain.h
+#HEADERS += ../native/base/QtMain.h
# UI
SOURCES += ../UI/*Screen.cpp \
diff --git a/Qt/mainwindow.cpp b/Qt/mainwindow.cpp
index bb6b2dd7c2..de46338e3e 100644
--- a/Qt/mainwindow.cpp
+++ b/Qt/mainwindow.cpp
@@ -131,7 +131,6 @@ void MainWindow::UpdateMenus()
ui->action_OptionsBufferedRendering->setChecked(g_Config.iRenderingMode == 1);
ui->action_OptionsLinearFiltering->setChecked(3 == g_Config.iTexFiltering);
- ui->action_Simple_2xAA->setChecked(g_Config.bFXAA);
ui->action_OptionsScreen1x->setChecked(0 == (g_Config.iInternalResolution - 1));
ui->action_OptionsScreen2x->setChecked(1 == (g_Config.iInternalResolution - 1));
@@ -483,12 +482,6 @@ void MainWindow::on_action_OptionsLinearFiltering_triggered()
UpdateMenus();
}
-void MainWindow::on_action_Simple_2xAA_triggered()
-{
- g_Config.bFXAA = !g_Config.bFXAA;
- UpdateMenus();
-}
-
void MainWindow::on_action_OptionsScreen1x_triggered()
{
SetZoom(1);
@@ -573,11 +566,8 @@ void MainWindow::on_action_OptionsFullScreen_triggered()
PSP_CoreParameter().pixelHeight = height;
PSP_CoreParameter().outputWidth = width;
PSP_CoreParameter().outputHeight = height;
-
- int antialias = 1;
- if (g_Config.bFXAA) antialias = 2;
- PSP_CoreParameter().renderWidth = width * antialias;
- PSP_CoreParameter().renderHeight = height * antialias;
+ PSP_CoreParameter().renderWidth = width;
+ PSP_CoreParameter().renderHeight = height;
pixel_xres = width;
pixel_yres = height;
@@ -722,13 +712,6 @@ void MainWindow::SetZoom(float zoom) {
PSP_CoreParameter().outputWidth = pixel_xres;
PSP_CoreParameter().outputHeight = pixel_yres;
- if (g_Config.bFXAA)
- {
- zoom *= 2;
- PSP_CoreParameter().renderWidth = 480 * zoom;
- PSP_CoreParameter().renderHeight = 272 * zoom;
- }
-
if (gpu)
gpu->Resized();
}
diff --git a/Qt/mainwindow.h b/Qt/mainwindow.h
index 21a68d911f..17c775397b 100644
--- a/Qt/mainwindow.h
+++ b/Qt/mainwindow.h
@@ -87,7 +87,6 @@ private slots:
void on_action_OptionsBufferedRendering_triggered();
void on_action_OptionsLinearFiltering_triggered();
- void on_action_Simple_2xAA_triggered();
void on_action_OptionsScreen1x_triggered();
void on_action_OptionsScreen2x_triggered();
diff --git a/Qt/mainwindow.ui b/Qt/mainwindow.ui
index 8748b9832b..796cbf52be 100644
--- a/Qt/mainwindow.ui
+++ b/Qt/mainwindow.ui
@@ -590,14 +590,6 @@
DisplayList...
-
-
- true
-
-
- Simple 2xAA
-
-
true