summaryrefslogtreecommitdiffstats
path: root/sigmod/Sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigmod/Sound.cpp')
-rw-r--r--sigmod/Sound.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmod/Sound.cpp b/sigmod/Sound.cpp
index c0f62820..58f33b31 100644
--- a/sigmod/Sound.cpp
+++ b/sigmod/Sound.cpp
@@ -23,8 +23,8 @@
#include "Sound.h"
// Sigmod includes
+#include "Game.h"
#include "Macros.h"
-#include "Sigmod.h"
using namespace Sigmod;
@@ -36,7 +36,7 @@ Sound::Sound(const Sound& sound) :
*this = sound;
}
-Sound::Sound(const Sigmod* parent, const int id) :
+Sound::Sound(const Game* parent, const int id) :
Object(parent, id),
m_name(""),
m_type(SoundEffect),
@@ -44,13 +44,13 @@ Sound::Sound(const Sigmod* parent, const int id) :
{
}
-Sound::Sound(const Sound& sound, const Sigmod* parent, const int id) :
+Sound::Sound(const Sound& sound, const Game* parent, const int id) :
Object(parent, id)
{
*this = sound;
}
-Sound::Sound(const QDomElement& xml, const Sigmod* parent, const int id) :
+Sound::Sound(const QDomElement& xml, const Game* parent, const int id) :
Object(parent, id)
{
LOAD_ID();