diff options
author | Max Horn | 2010-01-26 22:51:40 +0000 |
---|---|---|
committer | Max Horn | 2010-01-26 22:51:40 +0000 |
commit | ff783e4bb78f8442896e3f08a1b4234a6b89b9d7 (patch) | |
tree | e45f5c5dbec371084c1990c3df0d3e19bf2ad100 /engines | |
parent | 1565f14bc13a63aee6a42cc4fac3fe7fa39eda44 (diff) | |
download | scummvm-rg350-ff783e4bb78f8442896e3f08a1b4234a6b89b9d7.tar.gz scummvm-rg350-ff783e4bb78f8442896e3f08a1b4234a6b89b9d7.tar.bz2 scummvm-rg350-ff783e4bb78f8442896e3f08a1b4234a6b89b9d7.zip |
AGOS: Turn BaseSound into a subclass of Common::NonCopyable
svn-id: r47581
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/sound.cpp b/engines/agos/sound.cpp index 39e250a3b2..ee10cd6a5a 100644 --- a/engines/agos/sound.cpp +++ b/engines/agos/sound.cpp @@ -44,7 +44,7 @@ namespace AGOS { #define SOUND_BIG_ENDIAN true -class BaseSound { +class BaseSound : Common::NonCopyable { protected: File *_file; uint32 *_offsets; |