From 179f6cd9bacf85fa3ba6f9017901727848cd60fb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 17 Jan 2004 05:52:09 +0000 Subject: [PATCH] Revert: this breaks compiles in Linux, by using the local Vorbis source (which we only use in Win32) instead of the system headers. The correct fix is to add "vorbis" to the include file path in the Xbox project, like we do in the Windows project. --- stepmania/src/RageSoundReader_Vorbisfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageSoundReader_Vorbisfile.cpp b/stepmania/src/RageSoundReader_Vorbisfile.cpp index a3b6361250..9265194ba2 100644 --- a/stepmania/src/RageSoundReader_Vorbisfile.cpp +++ b/stepmania/src/RageSoundReader_Vorbisfile.cpp @@ -9,9 +9,9 @@ #include "RageLog.h" #if defined(INTEGER_OGG) -#include "tremor/ivorbisfile.h" +#include #else -#include "vorbis/vorbis/vorbisfile.h" +#include #endif #if defined(_XBOX)