From a1a17d6e648d0260cdbd4ca8abf3a038f996e6d7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 23 Apr 2003 19:30:41 +0000 Subject: [PATCH] add GetSampleRate --- stepmania/src/arch/Sound/RageSoundDriver.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver.h b/stepmania/src/arch/Sound/RageSoundDriver.h index bdaedb3d68..db25a0c7dc 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver.h +++ b/stepmania/src/arch/Sound/RageSoundDriver.h @@ -37,12 +37,14 @@ protected: * get it. */ virtual void VolumeChanged() { } + virtual int GetSampleRate() const { return 44100; } + public: virtual ~RageSoundDriver() { } }; /* - * Copyright (c) 2002 by the person(s) listed below. All rights reserved. + * Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved. * * Glenn Maynard */