diff options
author | Chris Robinson <[email protected]> | 2011-08-22 07:40:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-22 07:40:14 -0700 |
commit | 199df253caad196162b02d61fd7ed06606193890 (patch) | |
tree | a7ef47822a1593b600c440da9cc2f0e5586df8be /Alc | |
parent | c1f435cc18df4e2597d166b8b1c8a0d4ba9b23a6 (diff) |
Always use the thunk functions to get object IDs
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -484,7 +484,7 @@ static void alc_init(void) tls_create(&LocalContext); InitializeCriticalSection(&ListLock); - ALTHUNK_INIT(); + ThunkInit(); } static void alc_deinit_safe(void) @@ -492,7 +492,8 @@ static void alc_deinit_safe(void) ReleaseALC(ALC_FALSE); FreeALConfig(); - ALTHUNK_EXIT(); + + ThunkExit(); DeleteCriticalSection(&ListLock); tls_delete(LocalContext); |