Index: mytharchive/mytharchive/archivesettings.cpp
===================================================================
--- mytharchive/mytharchive/archivesettings.cpp	(revision 11817)
+++ mytharchive/mytharchive/archivesettings.cpp	(working copy)
@@ -110,7 +110,7 @@
     gc->setLabel(QObject::tr("Main Menu Aspect Ratio"));
     gc->addSelection("4:3");
     gc->addSelection("16:9");
-    gc->setValue(1);
+    gc->setCurrent(1);
     gc->setHelpText(QObject::tr("Aspect ratio to use when creating the main menu."));
     return gc;
 };
@@ -122,7 +122,7 @@
     gc->addSelection("4:3");
     gc->addSelection("16:9");
     gc->addSelection("Video");
-    gc->setValue(2);
+    gc->setCurrent(2);
     gc->setHelpText(QObject::tr("Aspect ratio to use when creating the chapter menu. "
             "Video means use the same aspect ratio as the associated video."));
     return gc;
Index: mythgame/mythgame/gamesettings.cpp
===================================================================
--- mythgame/mythgame/gamesettings.cpp	(revision 11817)
+++ mythgame/mythgame/gamesettings.cpp	(working copy)
@@ -156,7 +156,7 @@
         {
             addSelection(GameTypeList[i].nameStr, GameTypeList[i].idStr);
         }
-        setValue(0);
+        setCurrent(0);
         setHelpText(QObject::tr("Type of Game/Emulator. Mostly for informational purposes and has little effect on the function of your system."));
     };
 };
