diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a964135c6..58002f01c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,9 @@ D2X-Rebirth Changelog +20090522 +-------- +arch/sdl/window.c, main/inferno.c: Add include directives for last commit (whoops) + 20090521 -------- arch/include/event.h, arch/include/window.h, arch/sdl/event.c, arch/sdl/mouse.c, arch/sdl/window.c, d1x-rebirth.xcodeproj/project.pbxproj, main/inferno.c, SConstruct: Add new window system, not used yet diff --git a/arch/sdl/window.c b/arch/sdl/window.c index d3a2e827f..287280d0b 100644 --- a/arch/sdl/window.c +++ b/arch/sdl/window.c @@ -10,6 +10,8 @@ #include "gr.h" #include "window.h" +#include "u_mem.h" +#include "error.h" struct window { diff --git a/main/inferno.c b/main/inferno.c index 27de749f0..49890da12 100644 --- a/main/inferno.c +++ b/main/inferno.c @@ -91,6 +91,7 @@ char copyright[] = "DESCENT II COPYRIGHT (C) 1994-1996 PARALLAX SOFTWARE CORPOR #include "newdemo.h" #include "joy.h" #include "../texmap/scanline.h" //for select_tmap -MM +#include "event.h" #ifdef EDITOR #include "editor/editor.h"