X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fmainwin.cpp;h=7b7a2de3e21735497d76b7164a071566e6f5e783;hb=caf1236884015695c52910a75b8420be7c63d574;hp=bbeb3f867dd045aa89ac0c03fe4f6ef9aaa16ff4;hpb=3e68f33188872d5754d3765ff140811bcb696c6f;p=virtualjaguar diff --git a/src/gui/mainwin.cpp b/src/gui/mainwin.cpp index bbeb3f8..7b7a2de 100644 --- a/src/gui/mainwin.cpp +++ b/src/gui/mainwin.cpp @@ -110,7 +110,7 @@ MainWin::MainWin() aboutAct->setStatusTip(tr("Blatant self-promotion")); connect(aboutAct, SIGNAL(triggered()), this, SLOT(ShowAboutWin())); - filePickAct = new QAction(QIcon(":/res/generic.png"), tr("Insert Cartridge..."), this); + filePickAct = new QAction(QIcon(":/res/generic.png"), tr("&Insert Cartridge..."), this); filePickAct->setStatusTip(tr("Insert a cartridge into Virtual Jaguar")); connect(filePickAct, SIGNAL(triggered()), this, SLOT(InsertCart())); @@ -281,7 +281,8 @@ void MainWin::ReadSettings(void) vjs.renderType = settings.value("renderType", 0).toInt(); // Hardcoded, !!! FIX !!! - strcpy(vjs.ROMPath, "./roms"); +#warning "!!! FIX !!! ROMPath is hardcoded!" + strcpy(vjs.ROMPath, "./software"); } void MainWin::WriteSettings(void)