Skip to content

Commit

Permalink
Do not need a 16MB buffer in this use case (downloaded gz file is not…
Browse files Browse the repository at this point in the history
… even that large).
  • Loading branch information
halsafar committed Sep 2, 2021
1 parent 405a866 commit d8f7fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SongDataCore/BeatStar/BeatStarDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class BeatStarDatabase : DatabaseDownloader, IDatabaseDownloadHandler

public BeatStarDataFile Data = null;

protected byte[] Buffer = new byte[16 * 1048576];
protected byte[] Buffer = new byte[4096];

CacheableBeatStarDownloaderHandler _lastCacheHandler;

Expand Down

0 comments on commit d8f7fe8

Please sign in to comment.