From 66012f7a3541fc719f64c0ddecea8cf0e9834eb3 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Thu, 20 Jul 2006 08:50:16 +0000 Subject: [PATCH] Cleanup. --- stepmania/src/Player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index eadff15e68..442064c7c7 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -42,8 +42,8 @@ #include "LocalizedString.h" #include "AdjustSync.h" -RString COMBO_X_NAME( size_t p, size_t both_sides ) { return "ComboXOffset" + (both_sides ? RString("BothSides") : ssprintf("OneSideP%d",int(p+1)) ); } -RString ATTACK_DISPLAY_X_NAME( size_t p, size_t both_sides ){ return "AttackDisplayXOffset" + (both_sides ? RString("BothSides") : ssprintf("OneSideP%d",int(p+1)) ); } +RString COMBO_X_NAME( size_t p, size_t both_sides ) { return "ComboXOffset" + (both_sides ? RString("BothSides") : ssprintf("OneSideP%d",int(p+1)) ); } +RString ATTACK_DISPLAY_X_NAME( size_t p, size_t both_sides ) { return "AttackDisplayXOffset" + (both_sides ? RString("BothSides") : ssprintf("OneSideP%d",int(p+1)) ); } /* Distance to search for a note in Step(), in seconds. */ static const float StepSearchDistance = 1.0f;