aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/sequences/sequence.h
diff options
context:
space:
mode:
authorwhiterandrek2018-06-09 20:26:32 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitcf04fb20c76f4c0ce52939e074cb79c40367f93a (patch)
tree134120264f1de871f3ecffadb003ae27bb4a001e /engines/pink/objects/sequences/sequence.h
parent4fd0ec3ff71614ecbf66ec7f8b414d99c74b1e32 (diff)
downloadscummvm-rg350-cf04fb20c76f4c0ce52939e074cb79c40367f93a.tar.gz
scummvm-rg350-cf04fb20c76f4c0ce52939e074cb79c40367f93a.tar.bz2
scummvm-rg350-cf04fb20c76f4c0ce52939e074cb79c40367f93a.zip
PINK: rework sound system
Diffstat (limited to 'engines/pink/objects/sequences/sequence.h')
-rw-r--r--engines/pink/objects/sequences/sequence.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pink/objects/sequences/sequence.h b/engines/pink/objects/sequences/sequence.h
index 34863256f2..93dcb25d26 100644
--- a/engines/pink/objects/sequences/sequence.h
+++ b/engines/pink/objects/sequences/sequence.h
@@ -23,6 +23,7 @@
#ifndef PINK_SEQUENCE_H
#define PINK_SEQUENCE_H
+#include "pink/sound.h"
#include "pink/objects/object.h"
namespace Pink {
@@ -79,7 +80,7 @@ public:
private:
Common::String _soundName;
- Sound *_sound;
+ Sound _sound;
uint _sample;
};