Fix a few missing implicit void arg declarations

While working on #535, I noticed that editormenuactionpress() still
didn't do the explicit void declaration. Then I ran `rg 'void.*\(\)'`
and found three other functions that I somehow missed in #628. Whoops.
Well, now they no longer are missed.
This commit is contained in:
Misa
2021-03-18 21:20:05 -07:00
committed by Ethan Lee
parent 2c8d338e47
commit 9e2716b253
4 changed files with 4 additions and 4 deletions

View File

@@ -3680,7 +3680,7 @@ void editorlogic(void)
}
static void editormenuactionpress()
static void editormenuactionpress(void)
{
extern editorclass ed;
switch (game.currentmenuname)