summaryrefslogtreecommitdiff
path: root/src/sound/sound.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-29 14:12:39 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-29 14:12:39 +0000
commit4988b2ae63413a754196b915c2de34f74ad3ce8d (patch)
treec4a761a6ed2fe0df0706af05631ba05968ae4e78 /src/sound/sound.h
parentb2ee6c2da10288415e597d254a7694f7ddccbc78 (diff)
downloadMana-4988b2ae63413a754196b915c2de34f74ad3ce8d.tar.gz
Mana-4988b2ae63413a754196b915c2de34f74ad3ce8d.tar.bz2
Mana-4988b2ae63413a754196b915c2de34f74ad3ce8d.tar.xz
Mana-4988b2ae63413a754196b915c2de34f74ad3ce8d.zip
Changes to disable sound on Windows.
Diffstat (limited to 'src/sound/sound.h')
-rw-r--r--src/sound/sound.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sound/sound.h b/src/sound/sound.h
index a1055b02..b0719854 100644
--- a/src/sound/sound.h
+++ b/src/sound/sound.h
@@ -22,6 +22,7 @@
#ifndef __SOUND_H
#define __SOUND_H
+#ifndef WIN32
#ifdef WIN32
#pragma warning(disable:4312)
@@ -82,4 +83,5 @@ class Sound {
bool isMaxVol(int);
};
+#endif /* not WIN32 */
#endif