From 35051e4479c730dfe3b6537f0cdff6edf890ca86 Mon Sep 17 00:00:00 2001 From: Mike Hawkins Date: Thu, 8 Jan 2009 03:07:48 +0000 Subject: [PATCH] Increase max size of stats.xml, considering the fact that many people have a large number of songs (many more than 100) and many songs now have single+double charts included (more than 3). --- stepmania/src/Profile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 5990679ce5..06ace42767 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -47,8 +47,8 @@ static ThemeMetric UNLOCK_AUTH_STRING( "Profile", "UnlockAuthString" ); #define MAX_EDITABLE_INI_SIZE_BYTES 2*1024 // 2KB #define MAX_PLAYER_STATS_XML_SIZE_BYTES \ - 100 /* Songs */ \ - * 3 /* Steps per Song */ \ + 1000 /* Songs */ \ + * 5 /* Steps per Song */ \ * 10 /* HighScores per Steps */ \ * 1024 /* size in bytes of a HighScores XNode */