$OpenBSD: patch-simon_sound_cpp,v 1.1 2005/07/28 17:28:14 jolan Exp $
--- simon/sound.cpp.orig	Sat Dec 11 17:34:34 2004
+++ simon/sound.cpp	Wed Jul 27 17:38:55 2005
@@ -223,7 +223,7 @@ void MP3Sound::playSound(uint sound, Pla
 }
 #endif
 
-#ifdef USE_VORBIS
+#if defined(USE_TREMOR) || defined(USE_VORBIS)
 class VorbisSound : public BaseSound {
 public:
 	VorbisSound(SoundMixer *mixer, File *file, uint32 base = 0) : BaseSound(mixer, file, base) {};
@@ -307,7 +307,7 @@ Sound::Sound(const byte game, const Game
 		}
 	}
 #endif
-#ifdef USE_VORBIS
+#if defined(USE_TREMOR) || defined(USE_VORBIS)
 	if (!_voice && gss->vorbis_filename && gss->vorbis_filename[0]) {
 		file->open(gss->vorbis_filename);
 		if (file->isOpen()) {
@@ -368,7 +368,7 @@ Sound::Sound(const byte game, const Game
 			}
 		}
 #endif
-#ifdef USE_VORBIS
+#if defined(USE_TREMOR) || defined(USE_VORBIS)
 		if (!_effects && gss->vorbis_effects_filename && gss->vorbis_effects_filename[0]) {
 			file->open(gss->vorbis_effects_filename);
 			if (file->isOpen()) {
