From 8b27f60434cbf47a0362d6560d3cda745e076a6d Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Sat, 12 Jul 2003 17:43:39 +0000 Subject: Fixed RTTI warnings with PalmOS port svn-id: r8951 --- sound/mixer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound') diff --git a/sound/mixer.cpp b/sound/mixer.cpp index fa0f05a54f..c0b81afdae 100644 --- a/sound/mixer.cpp +++ b/sound/mixer.cpp @@ -192,7 +192,7 @@ void SoundMixer::appendStream(int index, void *sound, uint32 size) { StackLock lock(_mutex); ChannelStream *chan; -#ifndef _WIN32_WCE +#if !defined(_WIN32_WCE) && !defined(__PALM_OS__) chan = dynamic_cast(_channels[index]); #else chan = (ChannelStream*)_channels[index]; @@ -208,7 +208,7 @@ void SoundMixer::endStream(int index) { StackLock lock(_mutex); ChannelStream *chan; -#ifndef _WIN32_WCE +#if !defined(_WIN32_WCE) && !defined(__PALM_OS__) chan = dynamic_cast(_channels[index]); #else chan = (ChannelStream*)_channels[index]; -- cgit v1.2.3