mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Clean up some struct indentations
Also cleaned up the indentations of some variable declarations.
This commit is contained in:
parent
40182a48a5
commit
ebb48d019e
50 changed files with 1357 additions and 1355 deletions
|
@ -148,8 +148,8 @@ inline double pow2(double x) {return x * x;}
|
|||
|
||||
float MathFloatVectorSum(const std::vector<float>&);
|
||||
|
||||
#define ROUND_UP(x, a) (((x) + (a) - 1) & ~((a) - 1))
|
||||
#define ROUND_DOWN(x, a) ((x) & ~((a) - 1))
|
||||
#define ROUND_UP(x, a) (((x) + (a) - 1) & ~((a) - 1))
|
||||
#define ROUND_DOWN(x, a) ((x) & ~((a) - 1))
|
||||
|
||||
// Rounds down. 0 -> undefined
|
||||
inline u64 Log2(u64 val)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue