Fix dictionaryFile

This commit is contained in:
Love 2024-09-12 22:33:48 +02:00
parent b026cb63bd
commit a57c821530

View File

@ -14,7 +14,7 @@
#ifdef __APPLE__ #ifdef __APPLE__
const std::string Boggle::s_DICTIONARY_FILE = "../../../EnglishWords.dat"; const std::string Boggle::s_DICTIONARY_FILE = "../../../EnglishWords.dat";
#else #else
const std::string Boggle::DICTIONARY_FILE = "EnglishWords.dat"; const std::string Boggle::s_DICTIONARY_FILE = "EnglishWords.dat";
#endif #endif
static const int g_NUM_CUBES = 16; // the number of cubes in the game static const int g_NUM_CUBES = 16; // the number of cubes in the game