summaryrefslogtreecommitdiff
path: root/opl/opl.c
diff options
context:
space:
mode:
Diffstat (limited to 'opl/opl.c')
-rw-r--r--opl/opl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opl/opl.c b/opl/opl.c
index 982fb814..2800f434 100644
--- a/opl/opl.c
+++ b/opl/opl.c
@@ -357,7 +357,7 @@ void OPL_InitRegisters(void)
// Timer functions.
//
-void OPL_SetCallback(unsigned int us, opl_callback_t callback, void *data)
+void OPL_SetCallback(uint64_t us, opl_callback_t callback, void *data)
{
if (driver != NULL)
{
@@ -409,7 +409,7 @@ static void DelayCallback(void *_delay_data)
SDL_UnlockMutex(delay_data->mutex);
}
-void OPL_Delay(unsigned int us)
+void OPL_Delay(uint64_t us)
{
delay_data_t delay_data;