From a0abc1a89e9cdbd1ff642d8231898bb108318c57 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 30 Nov 2006 06:41:41 +0000 Subject: [PATCH] stream frames are 64-bit --- stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.h b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.h index f50eae1a70..3bb251adcd 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.h +++ b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.h @@ -104,7 +104,7 @@ private: int16_t buf[samples_per_block]; int16_t *p; // beginning of the unread data int frames_in_buffer; // total number of frames (not samples) at p - int position; // position value of p + int64_t position; // position value of p sound_block() { frames_in_buffer = position = 0; p = buf; } };