X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fgeneraltab.cpp;h=c71b1c30048f125fe1e3c38bfe4509d5b8526e32;hb=f30bf746981a99079e766b0d4e9de5391a4175ff;hp=a583bbfa1348a6e011cc69c2327395515723f83a;hpb=868fd551420e8b88e0bcf363c121e6e84a71b09a;p=virtualjaguar diff --git a/src/gui/generaltab.cpp b/src/gui/generaltab.cpp index a583bbf..c71b1c3 100644 --- a/src/gui/generaltab.cpp +++ b/src/gui/generaltab.cpp @@ -5,7 +5,7 @@ // (C) 2011 Underground Software // See the README and GPLv3 files for licensing and warranty information // -// JLH = James L. Hammons +// JLH = James Hammons // // WHO WHEN WHAT // --- ---------- ------------------------------------------------------------ @@ -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:"); @@ -55,11 +54,13 @@ GeneralTab::GeneralTab(QWidget * parent/*= 0*/): QWidget(parent) // Checkboxes... useBIOS = new QCheckBox(tr("Enable Jaguar BIOS")); + useGPU = new QCheckBox(tr("Enable GPU")); 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(useGPU); layout4->addWidget(useDSP); layout4->addWidget(useHostAudio); layout4->addWidget(useUnknownSoftware);