aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-09-11 07:20:02 -0700
committerChris Robinson <[email protected]>2016-09-11 07:20:02 -0700
commit4fcf9279febdaf9136e2ea61602dc39dcf5391dd (patch)
tree7292b2ce087a27625ac13cf113fcc5e1195350ad /OpenAL32
parentf993fd0cefe5dd04c2c37d4c1cde191dfbf2c882 (diff)
Mark a global variable declaration as extern
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 3d1a4986..29cb00fb 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -79,7 +79,7 @@ inline void aluVectorSet(aluVector *vector, ALfloat x, ALfloat y, ALfloat z, ALf
typedef union aluMatrixf {
alignas(16) ALfloat m[4][4];
} aluMatrixf;
-const aluMatrixf IdentityMatrixf;
+extern const aluMatrixf IdentityMatrixf;
inline void aluMatrixfSetRow(aluMatrixf *matrix, ALuint row,
ALfloat m0, ALfloat m1, ALfloat m2, ALfloat m3)