aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-23 22:33:37 -0700
committerChris Robinson <[email protected]>2011-09-23 22:33:37 -0700
commit9266a3727617c1da198183bc0919ac476298c7a8 (patch)
tree8c8c3f758caf5da4cea4ba346f127e4bdc3e73ac /OpenAL32
parentff8ee688526d4ad994eb72589fe0a294d14bd754 (diff)
Move ConeScale and ZScale to ALu.c and alu.h, and make them floats
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h3
-rw-r--r--OpenAL32/Include/alu.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index f23a6507..151391b4 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -788,9 +788,6 @@ extern enum LogLevel LogLevel;
} while(0)
-extern ALdouble ConeScale;
-extern ALdouble ZScale;
-
extern ALint RTPrioLevel;
#ifdef __cplusplus
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 2c20837b..a62ca1c5 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -185,6 +185,9 @@ ALvoid MixSource(struct ALsource *Source, ALCdevice *Device, ALuint SamplesToDo)
ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size);
ALvoid aluHandleDisconnect(ALCdevice *device);
+extern ALfloat ConeScale;
+extern ALfloat ZScale;
+
#ifdef __cplusplus
}
#endif