aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-29 01:01:20 -0700
committerChris Robinson <[email protected]>2011-08-29 01:01:20 -0700
commit2ac808ffa2b9c8bb0c1faf37155d27dc390b26b3 (patch)
tree842d5944ac6f6436869e35eba92c2ce7b18fe3eb /OpenAL32/Include/alMain.h
parent58078e2c1eb2a3778462c1d0632b0a2c85fe82ec (diff)
Fix typo
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index fa11a3d8..f4441887 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -259,7 +259,7 @@ static __inline T Exchange_##T(volatile T *ptr, T newval) \
typedef LONG RefCount;
static __inline RefCount IncrementRef(volatile RefCount *ptr)
-{ return InterlockedInrement(ptr); }
+{ return InterlockedIncrement(ptr); }
static __inline RefCount DecrementRef(volatile RefCount *ptr)
{ return InterlockedDecrement(ptr); }