mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #10632 from Tilka/ax_ub
AX: prevent undefined behavior
This commit is contained in:
commit
d0ed09ab6f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue