Basic opendingux support

This commit is contained in:
2021-04-01 13:15:34 +02:00
parent 67acc46222
commit bcb012fc65
8 changed files with 156 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
#ifndef __MIPSEL__
#include "jail_audio.h"
#include "stb_vorbis.c"
//#include <SDL2/SDL.h>
#define JA_MAX_SIMULTANEOUS_CHANNELS 5
@@ -210,4 +210,4 @@ JA_Channel_state JA_GetChannelState(const int channel) {
if (channel < 0 || channel >= JA_MAX_SIMULTANEOUS_CHANNELS) return JA_CHANNEL_INVALID;
return channels[channel].state;
}
#endif