Style: Fixup instances of void arguments

The style we have here is that functions with no arguments are to have
explicit `void` arguments, even though this doesn't apply in C++,
because it does apply in C.

Unfortunately, some have slipped through the cracks. This commit fixes
them.
This commit is contained in:
Misa
2023-03-18 15:24:14 -07:00
parent 63bc71b796
commit 9a87d23719
11 changed files with 32 additions and 32 deletions

View File

@@ -19,7 +19,7 @@ public:
void ResizeToNearestMultiple(void);
void GetWindowSize(int* x, int* y);
void RenderPresent();
void RenderPresent(void);
void toggleFullScreen(void);
void toggleScalingMode(void);