From f4f11f90188592391e7242b5f5e111bd0d8234b6 Mon Sep 17 00:00:00 2001 From: "wagic.jeck" Date: Mon, 23 Nov 2009 05:50:42 +0000 Subject: [PATCH] Jeck - Quick fix to issue 212. I'll do some debugging to make certain there aren't any other causes, but this is the major problem-- language and theme options had the same id, so were saving in the same place. --- projects/mtg/include/GameOptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/include/GameOptions.h b/projects/mtg/include/GameOptions.h index b873316ef..8906c2a5c 100644 --- a/projects/mtg/include/GameOptions.h +++ b/projects/mtg/include/GameOptions.h @@ -28,7 +28,7 @@ public: EVILTWIN_MODE_UNLOCKED, RANDOMDECK_MODE_UNLOCKED, LANG, - LAST_GLOBAL = RANDOMDECK_MODE_UNLOCKED, + LAST_GLOBAL = LANG, //This must be the value above, to keep ordering. //Values /must/ match ordering in optionNames, or everything loads wrong. //Profile settings ACTIVE_THEME,