projects
/
rocksndiamonds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b34743
)
fixed bug with checking music only for current instead of all levels
author
Holger Schemel
<info@artsoft.org>
Wed, 12 Apr 2023 11:46:58 +0000
(13:46 +0200)
committer
Holger Schemel
<info@artsoft.org>
Wed, 12 Apr 2023 11:46:58 +0000
(13:46 +0200)
src/files.c
patch
|
blob
|
history
diff --git
a/src/files.c
b/src/files.c
index 363e033ecc9da80c014a910ec30146978ca8b8c0..a22098da1628d872cd5b9d5692b2ba9cd58f90e0 100644
(file)
--- a/
src/files.c
+++ b/
src/files.c
@@
-12943,7
+12943,7
@@
static boolean checkLevelSetHasMusic_NoConf(void)
for (i = leveldir_current->first_level;
i <= leveldir_current->last_level; i++)
- if (levelset.music[
level_nr
] == MUS_UNDEFINED)
+ if (levelset.music[
i
] == MUS_UNDEFINED)
return TRUE;
return FALSE;