From 489cf3b2026f646473d185bab37106da21221e69 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 7 Nov 2005 05:45:48 +0000 Subject: [PATCH] .dat -> .txt so that file associations will find a text editor --- stepmania/src/GameState.cpp | 2 +- stepmania/src/ThemeManager.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/GameState.cpp b/stepmania/src/GameState.cpp index d739058f7b..9ac94754f1 100644 --- a/stepmania/src/GameState.cpp +++ b/stepmania/src/GameState.cpp @@ -44,7 +44,7 @@ GameState* GAMESTATE = NULL; // global and accessable from anywhere in our program -#define NAME_BLACKLIST_FILE "/Data/NamesBlacklist.dat" +#define NAME_BLACKLIST_FILE "/Data/NamesBlacklist.txt" ThemeMetric USE_NAME_BLACKLIST("GameState","UseNameBlacklist"); diff --git a/stepmania/src/ThemeManager.cpp b/stepmania/src/ThemeManager.cpp index d62109c8ad..3d373d0501 100644 --- a/stepmania/src/ThemeManager.cpp +++ b/stepmania/src/ThemeManager.cpp @@ -38,7 +38,7 @@ const CString LANGUAGES_SUBDIR = "Languages/"; const CString BASE_LANGUAGE = "english"; const CString THEMES_DIR = "Themes/"; const CString METRICS_FILE = "metrics.ini"; -const CString TYPE_DAT_FILE = "Data/Type.dat"; +const CString TYPE_TXT_FILE = "Data/Type.txt"; struct Theme @@ -933,7 +933,7 @@ CString ThemeManager::GetPreferencesSection() const CString sSection = "Preferences"; // OK if this fails - GetFileContents( TYPE_DAT_FILE, sSection, true ); + GetFileContents( TYPE_TXT_FILE, sSection, true ); // OK if this fails GetCommandlineArgument( "Type", &sSection );