aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-03-10 22:37:02 -0800
committerChris Robinson <[email protected]>2022-03-10 22:37:02 -0800
commite28937d1f6704bcdc3f0a194744905906b106cdd (patch)
treeaef91265df648b63e69ea1a12b4a2db00ea668e2 /alc/alu.h
parenta2d34e4c2a37931fda58d0a632140da3e2edd5b0 (diff)
Add options to reverse local X and Y coordinates
To go along with reverse-z on the other axii. This is only for games that have position/orientation errors causing top-bottom (or left-right) inversion.
Diffstat (limited to 'alc/alu.h')
-rw-r--r--alc/alu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/alc/alu.h b/alc/alu.h
index 03f56f56..f3796a89 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -16,6 +16,8 @@ constexpr float GainMixMax{1000.0f}; /* +60dB */
enum CompatFlags : uint8_t {
+ ReverseX,
+ ReverseY,
ReverseZ,
Count