From a57c821530c4011725f55ee8c2f362ed426b1c11 Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Thu, 12 Sep 2024 22:33:48 +0200 Subject: [PATCH] Fix dictionaryFile --- src/Boggle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Boggle.cpp b/src/Boggle.cpp index 79d7f59..801114f 100755 --- a/src/Boggle.cpp +++ b/src/Boggle.cpp @@ -14,7 +14,7 @@ #ifdef __APPLE__ const std::string Boggle::s_DICTIONARY_FILE = "../../../EnglishWords.dat"; #else -const std::string Boggle::DICTIONARY_FILE = "EnglishWords.dat"; +const std::string Boggle::s_DICTIONARY_FILE = "EnglishWords.dat"; #endif static const int g_NUM_CUBES = 16; // the number of cubes in the game