From 436d3bc65e6adf66b87d7cdaf7b7c968196f716e Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 5 Mar 2004 03:20:57 +0000 Subject: [PATCH] disable assert --- stepmania/src/arch/Sound/DSoundHelpers.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/stepmania/src/arch/Sound/DSoundHelpers.cpp b/stepmania/src/arch/Sound/DSoundHelpers.cpp index e213ee5c04..b63a31f3fe 100644 --- a/stepmania/src/arch/Sound/DSoundHelpers.cpp +++ b/stepmania/src/arch/Sound/DSoundHelpers.cpp @@ -475,9 +475,10 @@ void DSoundBuf::Stop() LastPosition = 0; /* When stopped and rewound, the play and write cursors should both be 0. */ - DWORD play, write; - buf->GetCurrentPosition( &play, &write ); - RAGE_ASSERT_M( play == 0 && write == 0, ssprintf("%i, %i", play, write) ); + /* This isn't true on some broken cards. */ +// DWORD play, write; +// buf->GetCurrentPosition( &play, &write ); +// RAGE_ASSERT_M( play == 0 && write == 0, ssprintf("%i, %i", play, write) ); playing = false; }