From 68b5d45b66d948db337f50255fa777ce15ee0871 Mon Sep 17 00:00:00 2001 From: realtradam Date: Sat, 27 May 2023 13:07:58 -0400 Subject: fix missing semicolon --- src/audio/rodeo_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/rodeo_audio.c b/src/audio/rodeo_audio.c index e3b0f7a..5f22357 100644 --- a/src/audio/rodeo_audio.c +++ b/src/audio/rodeo_audio.c @@ -125,7 +125,7 @@ rodeo_audio_master_volume_get(void) #ifndef __EMSCRIPTEN__ return ((float)Mix_MasterVolume(-1)) / (float)MIX_MAX_VOLUME; #else - return 0.0f + return 0.0f; #endif } -- cgit v1.2.3