diff options
author | tron <tron@openttd.org> | 2005-02-05 21:57:01 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-05 21:57:01 +0000 |
commit | cd5cd3c6fa1aa888f8da81e824d563011ff980fd (patch) | |
tree | 4a624b74bbedc67673db65149500003b85cd3871 | |
parent | 7cac482a73917e4cfc00a9288d2fb72756353271 (diff) | |
download | openttd-cd5cd3c6fa1aa888f8da81e824d563011ff980fd.tar.xz |
(svn r1806) Add missing includes (see r1803)
-rw-r--r-- | debug.c | 3 | ||||
-rw-r--r-- | w32dm2.cpp | 1 | ||||
-rw-r--r-- | win32.c | 1 |
3 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,6 @@ -#include <stdarg.h> #include "stdafx.h" +#include <stdio.h> +#include <stdarg.h> #include "ttd.h" #include "console.h" #include "debug.h" diff --git a/w32dm2.cpp b/w32dm2.cpp index b96dc9478..01a070416 100644 --- a/w32dm2.cpp +++ b/w32dm2.cpp @@ -38,6 +38,7 @@ #endif #include "ttd.h" +#include "debug.h" #include "sound.h" #include "hal.h" @@ -1,5 +1,6 @@ #include "stdafx.h" #include "ttd.h" +#include "debug.h" #include "table/strings.h" #include "gfx.h" #include "sound.h" |