From 45003ad3a6cee2fa63f939ed9786169bb03f9218 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 24 Aug 2002 04:26:28 +0000 Subject: [PATCH] Rename m_szStyleName back to m_szName. (Makes more sense, now that I know more about what it does: nothing at all, so it's just the name of the def itself, not the name of the data loaded.) --- stepmania/src/StyleDef.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/StyleDef.h b/stepmania/src/StyleDef.h index 4bca3721f8..83facbb806 100644 --- a/stepmania/src/StyleDef.h +++ b/stepmania/src/StyleDef.h @@ -38,7 +38,9 @@ public: Game m_Game; // Which Game is this Style used with? bool m_bUsedForGameplay; // Can be used only for gameplay? bool m_bUsedForEdit; // Can be used for editing? - char m_szStyleName[60]; + + /* The name of the style. (This is currently unused.) */ + char m_szName[60]; NotesType m_NotesType; // the notes format that this style reads. // For example, the "dance versus" reads the Notes with the tag "dance-single". enum StyleType