From a9ce78128d919e9798d7d2ec043879a4c685a9d1 Mon Sep 17 00:00:00 2001 From: jussi Date: Tue, 25 Apr 2023 18:19:14 +0300 Subject: Can now have multiple Music objects like other Raylib objects instead of just one. --- src/main.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index d1be4a1..0064b48 100644 --- a/src/main.c +++ b/src/main.c @@ -65,15 +65,11 @@ int main( int argn, const char **argc ) { if ( WindowShouldClose() ) { state->run = false; } - if ( IsAudioDeviceReady() ) { - UpdateMusicStream( state->music ); - } luaCallProcess(); luaCallDraw(); } luaCallExit(); } - stateFree(); return 1; -- cgit v1.2.3