diff --git a/projects/mtg/bin/Res/rules_/momir.txt b/projects/mtg/bin/Res/rules/momir.txt similarity index 100% rename from projects/mtg/bin/Res/rules_/momir.txt rename to projects/mtg/bin/Res/rules/momir.txt diff --git a/projects/mtg/bin/Res/rules_/mtg.txt b/projects/mtg/bin/Res/rules/mtg.txt similarity index 100% rename from projects/mtg/bin/Res/rules_/mtg.txt rename to projects/mtg/bin/Res/rules/mtg.txt diff --git a/projects/mtg/bin/Res/rules_/random1.txt b/projects/mtg/bin/Res/rules/random1.txt similarity index 100% rename from projects/mtg/bin/Res/rules_/random1.txt rename to projects/mtg/bin/Res/rules/random1.txt diff --git a/projects/mtg/bin/Res/rules_/random2.txt b/projects/mtg/bin/Res/rules/random2.txt similarity index 100% rename from projects/mtg/bin/Res/rules_/random2.txt rename to projects/mtg/bin/Res/rules/random2.txt diff --git a/projects/mtg/bin/Res/rules_/testsuite.txt b/projects/mtg/bin/Res/rules/testsuite.txt similarity index 100% rename from projects/mtg/bin/Res/rules_/testsuite.txt rename to projects/mtg/bin/Res/rules/testsuite.txt diff --git a/projects/mtg/src/Rules.cpp b/projects/mtg/src/Rules.cpp index c6364f922..474753df1 100644 --- a/projects/mtg/src/Rules.cpp +++ b/projects/mtg/src/Rules.cpp @@ -318,7 +318,7 @@ Rules::Rules(string filename){ int Rules::load(string _filename){ char filename[4096]; - sprintf(filename, RESPATH"/Rules/%s", _filename.c_str()); + sprintf(filename, RESPATH"/rules/%s", _filename.c_str()); std::ifstream file(filename); std::string s;