aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/adlmidi.cpp4
-rw-r--r--src/adlmidi_midiplay.hpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/adlmidi.cpp b/src/adlmidi.cpp
index 9d8005c..c7f4de4 100644
--- a/src/adlmidi.cpp
+++ b/src/adlmidi.cpp
@@ -1182,7 +1182,7 @@ ADLMIDI_EXPORT void adl_setDebugMessageHook(struct ADL_MIDIPlayer *device, ADL_D
}
/* Set loop start hook */
-ADLMIDI_EXPORT void adl_setLoopStartHook(struct ADL_MIDIPlayer *device, ASL_LoopPointHook loopStartHook, void *userData)
+ADLMIDI_EXPORT void adl_setLoopStartHook(struct ADL_MIDIPlayer *device, ADL_LoopPointHook loopStartHook, void *userData)
{
if(!device)
return;
@@ -1197,7 +1197,7 @@ ADLMIDI_EXPORT void adl_setLoopStartHook(struct ADL_MIDIPlayer *device, ASL_Loop
}
/* Set loop end hook */
-ADLMIDI_EXPORT void adl_setLoopEndHook(struct ADL_MIDIPlayer *device, ASL_LoopPointHook loopEndHook, void *userData)
+ADLMIDI_EXPORT void adl_setLoopEndHook(struct ADL_MIDIPlayer *device, ADL_LoopPointHook loopEndHook, void *userData)
{
if(!device)
return;
diff --git a/src/adlmidi_midiplay.hpp b/src/adlmidi_midiplay.hpp
index 5208f7b..cf0bb1a 100644
--- a/src/adlmidi_midiplay.hpp
+++ b/src/adlmidi_midiplay.hpp
@@ -51,9 +51,9 @@ struct MIDIEventHooks
void *onNote_userData;
// Loop start/end hooks
- ASL_LoopPointHook onLoopStart;
+ ADL_LoopPointHook onLoopStart;
void *onLoopStart_userData;
- ASL_LoopPointHook onLoopEnd;
+ ADL_LoopPointHook onLoopEnd;
void *onLoopEnd_userData;