You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building modules, the following errors happen:
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raudio.c:461:6: error: conflicting types for 'IsAudioDeviceReady'
bool IsAudioDeviceReady(void)
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raylib.h:1400:12: note: previous declaration is here
RLAPI bool IsAudioDeviceReady(void); // Check if audio device has been initialized successfully
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raudio.c:923:6: error: conflicting types for 'IsSoundPlaying'
bool IsSoundPlaying(Sound sound)
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raylib.h:1421:12: note: previous declaration is here
RLAPI bool IsSoundPlaying(Sound sound); // Check if a sound is currently playing
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raudio.c:1360:6: error: conflicting types for 'IsMusicPlaying'
bool IsMusicPlaying(Music music)
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raylib.h:1437:12: note: previous declaration is here
RLAPI bool IsMusicPlaying(Music music); // Check if music is playing
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raudio.c:1502:6: error: conflicting types for 'IsAudioStreamProcessed'
bool IsAudioStreamProcessed(AudioStream stream)
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raylib.h:1448:12: note: previous declaration is here
RLAPI bool IsAudioStreamProcessed(AudioStream stream); // Check if any audio stream buffers requires refill
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raudio.c:1528:6: error: conflicting types for 'IsAudioStreamPlaying'
bool IsAudioStreamPlaying(AudioStream stream)
^
/Applications/BlitzMax/mod/ray.mod/lib.mod/raylib/src/raylib.h:1452:12: note: previous declaration is here
RLAPI bool IsAudioStreamPlaying(AudioStream stream); ```
The text was updated successfully, but these errors were encountered:
When building modules, the following errors happen:
The text was updated successfully, but these errors were encountered: