X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fgeneraltab.cpp;h=777fbaf7f0725c8ec4b9f855b6e0b9b990cf1ea7;hb=62b541c6c09933ea0daf800ecd86467f6f15b584;hp=8574acba076e98d1863a428336cdf51434fe4d28;hpb=191b8a160955c254138acb81c5b8021dfa1c0a26;p=virtualjaguar diff --git a/src/gui/generaltab.cpp b/src/gui/generaltab.cpp index 8574acb..777fbaf 100644 --- a/src/gui/generaltab.cpp +++ b/src/gui/generaltab.cpp @@ -16,10 +16,9 @@ GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent) { -// antialiasChk = new QCheckBox(tr("Use Qt's built-in antialiasing")); - // I'm thinking we should scan the bios folder for the 5 known BIOSes, and // just present a radio button to choose between them... +// (BIOS is built-in now...) QLabel * label1 = new QLabel("Boot ROM:"); QLabel * label2 = new QLabel("CD Boot ROM:"); QLabel * label3 = new QLabel("EEPROMs:"); @@ -56,10 +55,12 @@ GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent) // Checkboxes... useBIOS = new QCheckBox(tr("Enable Jaguar BIOS")); useDSP = new QCheckBox(tr("Enable DSP")); + useHostAudio = new QCheckBox(tr("Enable audio playback (requires DSP)")); useUnknownSoftware = new QCheckBox(tr("Allow unknown software in file chooser")); layout4->addWidget(useBIOS); layout4->addWidget(useDSP); + layout4->addWidget(useHostAudio); layout4->addWidget(useUnknownSoftware); setLayout(layout4);