From 15bfa19e4bdd11f66b81e181bd8f0b34b2b47001 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 25 Oct 2004 00:59:54 +0000 Subject: [PATCH] always preload keys --- stepmania/src/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index 523b109362..c2f5b3eb12 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -260,7 +260,7 @@ void PlayerMinus::Load( { CString sKeysoundFilePath = sSongDir + pSong->m_vsKeysoundFile[i]; RageSound& sound = m_vKeysounds[i]; - sound.Load( sKeysoundFilePath ); + sound.Load( sKeysoundFilePath, true ); sound.SetParams( p ); } }