aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/staticres.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/kyra/staticres.cpp b/engines/kyra/staticres.cpp
index ad9c32fcc6..8271cc88ae 100644
--- a/engines/kyra/staticres.cpp
+++ b/engines/kyra/staticres.cpp
@@ -408,7 +408,11 @@ bool StaticResource::loadLanguageTable(const char *filename, void *&ptr, int &si
strcpy(file, filename);
strcat(file, languages[0].ext);
if (loadStringTable(file, ptr, size)) {
- warning("coudln't find specific language table for your version, using English now");
+ static bool warned = false;
+ if (!warned) {
+ warned = true;
+ warning("coudln't find specific language table for your version, using English now");
+ }
return true;
}