From bf5c1d758c0208baa1733662530ad2b22a7a396b Mon Sep 17 00:00:00 2001 From: mudlord Date: Tue, 4 Mar 2008 07:07:58 +0000 Subject: [PATCH] Removed redundant entries. We could add DDraw support if we wanted. Sindre Aamas's emulator is extremely insightful in the use of Qt and DirectDraw... git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@446 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/qt/GraphicsOutput.h | 3 +-- src/qt/MainOptions.cpp | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/qt/GraphicsOutput.h b/src/qt/GraphicsOutput.h index 7beba420..c456d895 100644 --- a/src/qt/GraphicsOutput.h +++ b/src/qt/GraphicsOutput.h @@ -34,8 +34,7 @@ public: { NONE, QPAINTER, - OPENGL, - DIRECT3D + OPENGL }; bool setAPI( DISPLAY_API api ); diff --git a/src/qt/MainOptions.cpp b/src/qt/MainOptions.cpp index 28a5bf03..37399661 100644 --- a/src/qt/MainOptions.cpp +++ b/src/qt/MainOptions.cpp @@ -25,7 +25,6 @@ VideoOptionsPage::VideoOptionsPage(QWidget *parent) QLabel *RenderLabel = new QLabel(tr("Renderer:")); QComboBox *RenderCombo = new QComboBox; RenderCombo->addItem("OpenGL"); - //RenderCombo->addItem(tr("D3D")); RenderCombo->addItem("QPainter"); QHBoxLayout *RenderLayout = new QHBoxLayout;