Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2011-05-07 19:38:20 +0000
committerStijn Buys <ingar@osirion.org>2011-05-07 19:38:20 +0000
commit1a35dffad7156592c6e983776b470a4108960bd3 (patch)
treec4a3f43eac68fea50dafe33ca5b76cb210f99f3a /src/client/soundext.cc
parent0b3c4498dbb8ef6397c673ccdbf57ed1daeae9db (diff)
Removed a number of unused variables to make gcc 4.6 happy.
Diffstat (limited to 'src/client/soundext.cc')
-rw-r--r--src/client/soundext.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/soundext.cc b/src/client/soundext.cc
index db8f642..e9d2deb 100644
--- a/src/client/soundext.cc
+++ b/src/client/soundext.cc
@@ -104,11 +104,11 @@ SoundExt::SoundExt(core::Entity *entity) : core::Extension(core::Extension::Soun
if (entity->type() == core::Entity::Controlable) {
core::EntityControlable *entityco = static_cast<core::EntityControlable *>(entity);
unsigned int enginesoundset = 0;
- unsigned int impulsesoundset = 0;
+ //unsigned int impulsesoundset = 0;
if (entityco->model()) {
enginesoundset = entityco->model()->enginesound();
- impulsesoundset = entityco->model()->impulsesound();
+ //impulsesoundset = entityco->model()->impulsesound();
}
std::stringstream soundname;