Don’t return a value from void function
This commit is contained in:
parent
d57a0621de
commit
e5ce2cb250
1 changed files with 1 additions and 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue