diff options
author | Max Horn | 2007-06-22 21:58:32 +0000 |
---|---|---|
committer | Max Horn | 2007-06-22 21:58:32 +0000 |
commit | 8cfb778bfae1adb575a9e835a7b5211eb8595095 (patch) | |
tree | 63fa87ea3271a594b735becbfe5ee4c766c9befa | |
parent | f974a3c48e3f7f49c39f682f67684fe215d35d87 (diff) | |
download | scummvm-rg350-8cfb778bfae1adb575a9e835a7b5211eb8595095.tar.gz scummvm-rg350-8cfb778bfae1adb575a9e835a7b5211eb8595095.tar.bz2 scummvm-rg350-8cfb778bfae1adb575a9e835a7b5211eb8595095.zip |
Adding two missing #includes to fix compilation. *sigh* I am really bad at double checking my commits tonight. Sorry, folks
svn-id: r27630
-rw-r--r-- | gui/massadd.cpp | 1 | ||||
-rw-r--r-- | gui/message.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gui/massadd.cpp b/gui/massadd.cpp index 1fc34dfd35..802f1cf084 100644 --- a/gui/massadd.cpp +++ b/gui/massadd.cpp @@ -27,6 +27,7 @@ #include "engines/engine.h" #include "base/game.h" #include "base/plugins.h" +#include "common/events.h" #include "gui/launcher.h" // For addGameToConf() #include "gui/massadd.h" diff --git a/gui/message.cpp b/gui/message.cpp index 01e30c26a3..958d8e3dc8 100644 --- a/gui/message.cpp +++ b/gui/message.cpp @@ -23,6 +23,7 @@ */ #include "common/stdafx.h" +#include "common/events.h" #include "common/str.h" #include "common/system.h" #include "gui/message.h" |