mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user