aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/file.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/file.cpp b/common/file.cpp
index cbd4e82f07..64b67c5632 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -47,10 +47,12 @@ FILE *File::fopenNoCase(const char *filename, const char *directory, const char
"data/",
"DATA/",
"resource/",
- "RESOURCE/"
+ "RESOURCE/",
+ "voices/",
+ "VOICES/"
};
- for (uint8 l = 0; l < 7; l++) {
+ for (uint8 l = 0; l < 9; l++) {
strcpy(buf, directory);
if (directory[0] != 0) {
#ifdef __MORPHOS__