X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fmainwin.cpp;h=75b4bc385ae734ca09a6e89ce7a5c849ddfbceaa;hb=417c77735e5e76ab8803694511b465206d64bf97;hp=c73d6708a6cbffb87b90685325223847f1e80391;hpb=5da604521611a960140b58a2fb0f236c65610b70;p=virtualjaguar diff --git a/src/gui/mainwin.cpp b/src/gui/mainwin.cpp index c73d670..75b4bc3 100644 --- a/src/gui/mainwin.cpp +++ b/src/gui/mainwin.cpp @@ -14,6 +14,7 @@ // FIXED: // +// - Add dbl click/enter to select in cart list, ESC to dimiss [DONE] // // STILL TO BE DONE: // @@ -21,7 +22,6 @@ // - Controller configuration // - Remove SDL dependencies (sound, mainly) from Jaguar core lib // - Add 1 key jumping in cartridge list (press 'R', jumps to carts starting with 'R', etc) -// - Add dbl click/enter to select in cart list, ESC to dimiss // /* @@ -165,7 +165,7 @@ MainWin::MainWin(): running(false), powerButtonOn(false), showUntunedTankCircuit configAct->setShortcut(QKeySequence(tr("Ctrl+c"))); connect(configAct, SIGNAL(triggered()), this, SLOT(Configure())); - useCDAct = new QAction(QIcon(":/res/generic.png"), tr("&Use CD Unit"), this); + useCDAct = new QAction(QIcon(":/res/compact-disc.png"), tr("&Use CD Unit"), this); useCDAct->setStatusTip(tr("Use Jaguar Virtual CD unit")); // useCDAct->setShortcut(QKeySequence(tr("Ctrl+c"))); useCDAct->setCheckable(true); @@ -479,6 +479,8 @@ void MainWin::TogglePowerState(void) pauseAct->setDisabled(true); showUntunedTankCircuit = true; running = true; + // This is just in case the ROM we were playing was in a narrow or wide field mode + TOMReset(); } else {