aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudvig Strigeus2001-12-02 21:42:47 +0000
committerLudvig Strigeus2001-12-02 21:42:47 +0000
commitc37eddbc36cc00ffc580c271f2e81b38277a455e (patch)
tree2898148dd6419ec798b94fc47cdf7306ff2f25fd
parentacaaff5144fce4717daa3df88b831b39dc84f147 (diff)
downloadscummvm-rg350-c37eddbc36cc00ffc580c271f2e81b38277a455e.tar.gz
scummvm-rg350-c37eddbc36cc00ffc580c271f2e81b38277a455e.tar.bz2
scummvm-rg350-c37eddbc36cc00ffc580c271f2e81b38277a455e.zip
forgot to initialize a variable
svn-id: r3518
-rw-r--r--resource.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/resource.cpp b/resource.cpp
index 7927c24b51..5937dedac7 100644
--- a/resource.cpp
+++ b/resource.cpp
@@ -476,6 +476,7 @@ int Scumm::readSoundResource(int type, int index) {
return 1;
}
#else
+ best_pri = 0;
while (pos < total_size) {
tag = fileReadDword();
size = fileReadDwordBE() + 8;