summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2020-04-18 23:31:03 +0200
committerTimotej Lazar <timotej.lazar@araneo.si>2020-04-23 18:52:43 +0200
commite5ce2cb250d4d217ca495344943665e16616c73e (patch)
tree6a53d7a6e8e23054afb7a860a805b1c60e9a250f /src
parentd57a0621dedf6c48e78160280ae54c7a098deb30 (diff)
Don’t return a value from void function
Diffstat (limited to 'src')
-rw-r--r--src/bink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bink.c b/src/bink.c
index 7191b2a..c696bde 100644
--- a/src/bink.c
+++ b/src/bink.c
@@ -637,7 +637,7 @@ int UpdateBinkFMV(FMVHandle aFmvHandle, int volume)
void CloseBinkFMV(FMVHandle aFmvHandle)
{
if(!binkInitialized || aFmvHandle==0)
- return 0;
+ return;
struct binkMovie* movie = (struct binkMovie*)aFmvHandle;
BinkReleaseMovie(movie);