1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-02 19:39:12 +00:00

(svn r9050) -Codechange: Foo(void) -> Foo()

This commit is contained in:
rubidium
2007-03-07 11:47:46 +00:00
parent a69e3b1c45
commit 36bb92ae24
180 changed files with 1072 additions and 1073 deletions

View File

@@ -99,7 +99,7 @@ static const WindowDesc _select_game_desc = {
SelectGameWndProc
};
void ShowSelectGameWindow(void)
void ShowSelectGameWindow()
{
AllocateWindowDesc(&_select_game_desc);
}
@@ -109,7 +109,7 @@ static void AskExitGameCallback(Window *w, bool confirmed)
if (confirmed) _exit_game = true;
}
void AskExitGame(void)
void AskExitGame()
{
#if defined(_WIN32)
SetDParam(0, STR_0133_WINDOWS);
@@ -142,7 +142,7 @@ static void AskExitToGameMenuCallback(Window *w, bool confirmed)
if (confirmed) _switch_mode = SM_MENU;
}
void AskExitToGameMenu(void)
void AskExitToGameMenu()
{
ShowQuery(
STR_0161_QUIT_GAME,