diff options
author | Chris Robinson <[email protected]> | 2022-03-16 20:32:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-03-16 20:32:09 -0700 |
commit | 8ca3186bacdf63ba45549a569e5ed7e096de5bad (patch) | |
tree | fb9fc953f7694d9a7aa660dfc67eb9a0479aed75 /alc/context.cpp | |
parent | f903c1ea11d9b3175c3075bbbf3e6c636adea2f9 (diff) |
Ensure the EAX functions are suitably aligned on 32-bit
Diffstat (limited to 'alc/context.cpp')
-rw-r--r-- | alc/context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/context.cpp b/alc/context.cpp index 4b1c2a4c..bec3d56a 100644 --- a/alc/context.cpp +++ b/alc/context.cpp @@ -1235,7 +1235,7 @@ void eax_fail_get( } // namespace -ALenum AL_APIENTRY EAXSet( +FORCE_ALIGN ALenum AL_APIENTRY EAXSet( const GUID* property_set_id, ALuint property_id, ALuint property_source_id, @@ -1266,7 +1266,7 @@ catch (...) return AL_INVALID_OPERATION; } -ALenum AL_APIENTRY EAXGet( +FORCE_ALIGN ALenum AL_APIENTRY EAXGet( const GUID* property_set_id, ALuint property_id, ALuint property_source_id, |