change the names from Classic and Modern to more descriptive Normal and Lower (even though ITG's reverse is only one pixel different from 3.9/4.0's)
This commit is contained in:
@@ -177,22 +177,22 @@ function ScoreMissedHoldsAndRolls()
|
||||
end;
|
||||
|
||||
local tNotePositions = {
|
||||
-- DDR
|
||||
Classic = {
|
||||
-- StepMania 3.9/4.0
|
||||
Normal = {
|
||||
-144,
|
||||
144,
|
||||
},
|
||||
-- ITG
|
||||
Modern = {
|
||||
Lower = {
|
||||
-125,
|
||||
145,
|
||||
},
|
||||
}
|
||||
function GetTapPosition( sType )
|
||||
bCategory = (sType == 'Standard') and 1 or 2;
|
||||
-- true: Classic
|
||||
-- false: Modern
|
||||
bPreference = GetUserPrefB("UserPrefNotePosition") and "Classic" or "Modern";
|
||||
-- true: Normal
|
||||
-- false: Lower
|
||||
bPreference = GetUserPrefB("UserPrefNotePosition") and "Normal" or "Lower";
|
||||
tNotePos = tNotePositions[bPreference];
|
||||
return tNotePos[bCategory]
|
||||
end
|
||||
Reference in New Issue
Block a user