1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-24 18:48:01 +02:00

Compilation fixes

Seems to work now
This commit is contained in:
Martin Cietwierkowski 2023-03-31 20:30:15 -04:00
parent b33b7454c2
commit 15ca2a4dfd
4 changed files with 64 additions and 88 deletions

View file

@ -279,11 +279,6 @@ namespace SDL2
public struct Music;
public struct Chunk;
public static int32 PlayChannel(int channel, Chunk* chunk, int loops)
{
return PlayChannelTimed(channel, chunk, loops, -1);
}
/* chunk refers to a Mix_Chunk* */
[LinkName("Mix_PlayChannelTimed")]
public static extern int32 PlayChannelTimed(
@ -465,6 +460,6 @@ namespace SDL2
public static extern int32 SetTimidityCfg(char8* path);
[LinkName("Mix_GetTimidityCfg")]
public static extern char8* Mix_GetTimidityCfg(void);
public static extern char8* Mix_GetTimidityCfg();
}
}