aboutsummaryrefslogtreecommitdiffstats
path: root/router/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-28 14:48:12 -0700
committerChris Robinson <[email protected]>2020-04-28 14:48:12 -0700
commitcf64dc1103ea4a1221e70259cb09f96283f2d8fb (patch)
treeb7f099879b373d1dac1e4fc58f33e9cb9e90168a /router/alc.cpp
parent2520d492a573f4994e5428e9f9c57cfed9c12616 (diff)
Fix up some more uses of [AL[C]]void
Diffstat (limited to 'router/alc.cpp')
-rw-r--r--router/alc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/router/alc.cpp b/router/alc.cpp
index c99e7c93..1a8538b8 100644
--- a/router/alc.cpp
+++ b/router/alc.cpp
@@ -17,8 +17,8 @@
#define DECL(x) { #x, reinterpret_cast<void*>(x) }
struct FuncExportEntry {
- const ALCchar *funcName;
- ALCvoid *address;
+ const char *funcName;
+ void *address;
};
static const std::array<FuncExportEntry,95> alcFunctions{{
DECL(alcCreateContext),