diff options
| author | Timotej Lazar <timotej.lazar@araneo.si> | 2020-04-18 23:31:03 +0200 |
|---|---|---|
| committer | Timotej Lazar <timotej.lazar@araneo.si> | 2020-04-23 18:52:43 +0200 |
| commit | e5ce2cb250d4d217ca495344943665e16616c73e (patch) | |
| tree | 6a53d7a6e8e23054afb7a860a805b1c60e9a250f /src | |
| parent | d57a0621dedf6c48e78160280ae54c7a098deb30 (diff) | |
Don’t return a value from void function
Diffstat (limited to 'src')
| -rw-r--r-- | src/bink.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
