mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-13 11:39:09 +00:00
force VolumeDirectory to align files to 32KB (only streaming audio files really need to be aligned...)
This commit is contained in:
parent
5ceef0c513
commit
26521aa66a
4 changed files with 25 additions and 17 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue