From 16c154f0316782fb064f9c26808eff05ff2a8ae1 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Wed, 7 Mar 2007 02:51:34 +0000 Subject: [PATCH] fix GetLifeDifficulty returns wrong value --- stepmania/src/ScreenOptionsMasterPrefs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptionsMasterPrefs.cpp b/stepmania/src/ScreenOptionsMasterPrefs.cpp index c741a321da..5f4633e298 100644 --- a/stepmania/src/ScreenOptionsMasterPrefs.cpp +++ b/stepmania/src/ScreenOptionsMasterPrefs.cpp @@ -424,7 +424,7 @@ static void LifeDifficulty( int &sel, bool ToSel, const ConfOption *pConfOption static int GetLifeDifficulty() { int iLifeDifficulty = 0; - LifeDifficulty( iLifeDifficulty, true, ConfOption::Find("Premium") ); + LifeDifficulty( iLifeDifficulty, true, ConfOption::Find("LifeDifficulty") ); iLifeDifficulty++; // LifeDifficulty returns an index return iLifeDifficulty; }