]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/generaltab.cpp
Small code cleanups, file picker now grabs everything it knows about by
[virtualjaguar] / src / gui / generaltab.cpp
index a583bbfa1348a6e011cc69c2327395515723f83a..a9f824af58030eec6ace62c1f29af0a90a09c2a7 100644 (file)
 
 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,8 +55,8 @@ 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"));
-       useUnknownSoftware = new QCheckBox(tr("Allow unknown software in file chooser"));
+       useHostAudio       = new QCheckBox(tr("Enable audio playback (requires DSP)"));
+       useUnknownSoftware = new QCheckBox(tr("Show all files in file chooser"));
 
        layout4->addWidget(useBIOS);
        layout4->addWidget(useDSP);