mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 02:32:06 +00:00
Remove redundant (void) parameter declarations
This commit is contained in:
@@ -78,12 +78,12 @@ void charmap_Set(char const *name)
|
||||
currentCharmap = &search->second;
|
||||
}
|
||||
|
||||
void charmap_Push(void)
|
||||
void charmap_Push()
|
||||
{
|
||||
charmapStack.push(currentCharmap);
|
||||
}
|
||||
|
||||
void charmap_Pop(void)
|
||||
void charmap_Pop()
|
||||
{
|
||||
if (charmapStack.empty()) {
|
||||
error("No entries in the charmap stack\n");
|
||||
|
||||
Reference in New Issue
Block a user