force VolumeDirectory to align files to 32KB (only streaming audio files really need to be aligned...)

This commit is contained in:
Shawn Hoffman
2012-04-23 00:38:58 -07:00
parent 5ceef0c513
commit 26521aa66a
4 changed files with 25 additions and 17 deletions

View File

@ -161,6 +161,7 @@ void LoadDefaultSSEState();
float MathFloatVectorSum(const std::vector<float>&);
#define ROUND_UP(x, a) (((x) + (a) - 1) & ~((a) - 1))
#define ROUND_DOWN(x, a) ((x) & ~((a) - 1))
// Tiny matrix/vector library.