From e804c28451f9faa60cfd8bfa475d0bfc65a8f648 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 24 Jul 2004 03:01:23 +0000 Subject: [PATCH] smaller buffer --- stepmania/src/RageFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFile.h b/stepmania/src/RageFile.h index d1f616fbd3..42a934ff45 100644 --- a/stepmania/src/RageFile.h +++ b/stepmania/src/RageFile.h @@ -86,7 +86,7 @@ private: bool m_EOF; int m_FilePos; - enum { BSIZE = 1024*16 }; + enum { BSIZE = 1024 }; char m_Buffer[BSIZE]; char *m_pBuf; int m_BufAvail;