mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
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:
@@ -3680,7 +3680,7 @@ void editorlogic(void)
|
||||
}
|
||||
|
||||
|
||||
static void editormenuactionpress()
|
||||
static void editormenuactionpress(void)
|
||||
{
|
||||
extern editorclass ed;
|
||||
switch (game.currentmenuname)
|
||||
|
||||
Reference in New Issue
Block a user