Skip to content
Permalink
Browse files
Merge pull request #10632 from Tilka/ax_ub
AX: prevent undefined behavior
  • Loading branch information
lioncash committed May 4, 2022
2 parents ac64382 + aee547a commit d0ed09a
Showing 1 changed file with 1 addition and 1 deletion.
@@ -44,7 +44,7 @@ inline namespace AXWii
namespace
{
// Useful macro to convert xxx_hi + xxx_lo to xxx for 32 bits.
#define HILO_TO_32(name) ((name##_hi << 16) | name##_lo)
#define HILO_TO_32(name) ((u32(name##_hi) << 16) | name##_lo)

// Used to pass a large amount of buffers to the mixing function.
union AXBuffers

0 comments on commit d0ed09a

Please sign in to comment.