* Step information can now show meters from 0-25. (hopefully)
* MAX_METER upped to 35.
This commit is contained in:
@@ -6,9 +6,11 @@
|
||||
#include "EnumHelper.h"
|
||||
|
||||
// Note definitions
|
||||
// Use 1-20 instead of 1-13 -aj
|
||||
// Use 1-35 instead of 1-13. -aj
|
||||
/* 35 is used because we have to be mindful of Profile data.
|
||||
* See Profile::InitGeneralData() for how MAX_METER is used. -aj */
|
||||
const int MIN_METER = 1;
|
||||
const int MAX_METER = 20;
|
||||
const int MAX_METER = 35;
|
||||
|
||||
// Credits
|
||||
const int MAX_NUM_CREDITS = 20;
|
||||
|
||||
+2
-1
@@ -545,7 +545,8 @@ static MenuDef g_AreaMenu(
|
||||
static MenuDef g_StepsInformation(
|
||||
"ScreenMiniMenuStepsInformation",
|
||||
MenuRowDef( ScreenEdit::difficulty, "Difficulty", true, EditMode_Practice, true, true, 0, NULL ),
|
||||
MenuRowDef( ScreenEdit::meter, "Meter", true, EditMode_Practice, true, false, 0, "1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20" ),
|
||||
// xxx: this giant list of numbers SUUUUUUUUUUCKS -aj
|
||||
MenuRowDef( ScreenEdit::meter, "Meter", true, EditMode_Practice, true, false, 0, "1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25" ),
|
||||
MenuRowDef( ScreenEdit::description, "Description", true, EditMode_Practice, true, true, 0, NULL ),
|
||||
MenuRowDef( ScreenEdit::predict_meter, "Predicted Meter", false, EditMode_Full, true, true, 0, NULL ),
|
||||
MenuRowDef( ScreenEdit::tap_notes, "Tap Steps", false, EditMode_Full, true, true, 0, NULL ),
|
||||
|
||||
Reference in New Issue
Block a user