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...
This commit is contained in:
mudlord 2008-03-04 07:07:58 +00:00
parent c186ca49fe
commit 517d815248
2 changed files with 1 additions and 3 deletions

View File

@ -34,8 +34,7 @@ public:
{
NONE,
QPAINTER,
OPENGL,
DIRECT3D
OPENGL
};
bool setAPI( DISPLAY_API api );

View File

@ -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;