aboutsummaryrefslogtreecommitdiff
path: root/resource.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-08-14 20:43:56 +0000
committerPaweł Kołodziejski2002-08-14 20:43:56 +0000
commit105f966c6a66803653db90a01303cee3a08e5c0d (patch)
treeff6ca43e24badde1ca31cdc3748d14e072716612 /resource.cpp
parentf2faf9063bda1acc1b9efd8bd1e5bc8b4af4a98c (diff)
downloadscummvm-rg350-105f966c6a66803653db90a01303cee3a08e5c0d.tar.gz
scummvm-rg350-105f966c6a66803653db90a01303cee3a08e5c0d.tar.bz2
scummvm-rg350-105f966c6a66803653db90a01303cee3a08e5c0d.zip
moved to Sound class
svn-id: r4744
Diffstat (limited to 'resource.cpp')
-rw-r--r--resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/resource.cpp b/resource.cpp
index ccb372b899..3e04c0bb0e 100644
--- a/resource.cpp
+++ b/resource.cpp
@@ -1030,7 +1030,7 @@ bool Scumm::isResourceInUse(int type, int i)
case rtCostume:
return isCostumeInUse(i);
case rtSound:
- return isSoundRunning(i) != 0;
+ return _sound->isSoundRunning(i) != 0;
default:
return false;
}