$OpenBSD: patch-queen_sound_cpp,v 1.1 2005/07/28 17:28:14 jolan Exp $
--- queen/sound.cpp.orig	Sun Dec 19 06:48:11 2004
+++ queen/sound.cpp	Thu Jul 28 12:20:47 2005
@@ -60,7 +60,7 @@ Sound *Sound::giveSound(SoundMixer *mixe
 				#endif
 				break;
 		case COMPRESSION_OGG:
-				#ifndef USE_VORBIS
+				#if !defined(USE_TREMOR) && !defined(USE_VORBIS)
 					warning("Using OGG compressed datafile, but OGG support not compiled in");
 					return new SilentSound(mixer, vm);
 				#else
@@ -205,7 +205,7 @@ void MP3Sound::sfxPlay(const char *name,
 }
 #endif
 
-#ifdef USE_VORBIS
+#if defined(USE_TREMOR) || defined(USE_VORBIS)
 void OGGSound::sfxPlay(const char *name, bool isSpeech) {
 	uint32 size;
 	File *f = _vm->resource()->giveCompressedSound(name, &size);		
