diff options
author | Max Horn | 2003-09-18 02:07:18 +0000 |
---|---|---|
committer | Max Horn | 2003-09-18 02:07:18 +0000 |
commit | be9d4066e147e1f7eebd5b554f11b876f93f3ae9 (patch) | |
tree | 98416196bcb39d49d4effb582a6e0bba165249b1 /gui | |
parent | ec0d41137ca8bf414f674afd6f6103ad6e9bf0ac (diff) | |
download | scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.tar.gz scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.tar.bz2 scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.zip |
moved engine.* to base; this fixes some linking issues when building a barebone ScummVM (or maybe I just want to increase our CVS stats? <g>)
svn-id: r10287
Diffstat (limited to 'gui')
-rw-r--r-- | gui/PopUpWidget.cpp | 2 | ||||
-rw-r--r-- | gui/about.cpp | 2 | ||||
-rw-r--r-- | gui/console.cpp | 2 | ||||
-rw-r--r-- | gui/launcher.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gui/PopUpWidget.cpp b/gui/PopUpWidget.cpp index 96dc9f1581..06c0b7fdb0 100644 --- a/gui/PopUpWidget.cpp +++ b/gui/PopUpWidget.cpp @@ -22,7 +22,7 @@ #include "PopUpWidget.h" #include "dialog.h" #include "newgui.h" -#include "common/engine.h" +#include "base/engine.h" #define UP_DOWN_BOX_HEIGHT 10 diff --git a/gui/about.cpp b/gui/about.cpp index 23f0bb6d27..99f054b18e 100644 --- a/gui/about.cpp +++ b/gui/about.cpp @@ -21,7 +21,7 @@ #include "stdafx.h" #include "about.h" #include "newgui.h" -#include "common/engine.h" +#include "base/engine.h" #include "common/str.h" AboutDialog::AboutDialog(NewGui *gui) diff --git a/gui/console.cpp b/gui/console.cpp index 775fce0422..53fdeba312 100644 --- a/gui/console.cpp +++ b/gui/console.cpp @@ -22,7 +22,7 @@ #include "console.h" #include "ScrollBarWidget.h" -#include "common/engine.h" +#include "base/engine.h" #define PROMPT ") " diff --git a/gui/launcher.cpp b/gui/launcher.cpp index dc62755e3f..d231519f67 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -36,7 +36,7 @@ #include "base/plugins.h" #include "common/config-file.h" -#include "common/engine.h" +#include "base/engine.h" enum { kStartCmd = 'STRT', |