mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix mute button not working at all
Whoops, looks like I forgot to test that I didn't break the mute button completely in my previous pull request.
This commit is contained in:
parent
fa075010c8
commit
17585c4602
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
//Mute button
|
//Mute button
|
||||||
if (key.isDown(KEYBOARD_m) && game.mutebutton<=0 && !ed.textentry && !key.textentrymode)
|
if (key.isDown(KEYBOARD_m) && game.mutebutton<=0 && !ed.textentry && ed.scripthelppage != 1)
|
||||||
{
|
{
|
||||||
game.mutebutton = 8;
|
game.mutebutton = 8;
|
||||||
if (game.muted)
|
if (game.muted)
|
||||||
|
|
Loading…
Reference in a new issue