From 2b6350e63b961a942d8f650f82f542b9335d6569 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Wed, 1 Dec 2004 06:30:49 +0000 Subject: [PATCH] Compile fix. --- stepmania/src/arch/Sound/RageSoundDriver_CA.cpp | 3 ++- stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp b/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp index 912a73de7f..3680a43293 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_CA.cpp @@ -55,7 +55,7 @@ RageSound_CA::RageSound_CA() mConverter = NULL; } -CString RageSound_OSS::Init() +CString RageSound_CA::Init() { try { @@ -142,6 +142,7 @@ CString RageSound_OSS::Init() { return "Couldn't start the IOProc."; } + return ""; } RageSound_CA::~RageSound_CA() diff --git a/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp b/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp index 2ed40d3d53..5a11537a54 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_QT1.cpp @@ -91,6 +91,7 @@ CString RageSound_QT1::Init() if (err != noErr) return "Unable to create audio channel"; + return ""; } RageSound_QT1::~RageSound_QT1()