diff options
| author | Max Horn | 2004-06-25 21:47:37 +0000 |
|---|---|---|
| committer | Max Horn | 2004-06-25 21:47:37 +0000 |
| commit | ca9448fe4088af1e7969f2c003146604a1501891 (patch) | |
| tree | b2346d2f8970f7d67898227a8eadd9eccfa1d919 | |
| parent | fb188716d552a84ff98d082e690b70dd40482b3d (diff) | |
| download | scummvm-rg350-ca9448fe4088af1e7969f2c003146604a1501891.tar.gz scummvm-rg350-ca9448fe4088af1e7969f2c003146604a1501891.tar.bz2 scummvm-rg350-ca9448fe4088af1e7969f2c003146604a1501891.zip | |
clearnup
svn-id: r14054
| -rw-r--r-- | saga/gfx.cpp | 13 | ||||
| -rw-r--r-- | saga/reinherit.h | 6 | ||||
| -rw-r--r-- | saga/saga.h | 2 |
3 files changed, 12 insertions, 9 deletions
diff --git a/saga/gfx.cpp b/saga/gfx.cpp index 1f75529b0f..ab8b8e7339 100644 --- a/saga/gfx.cpp +++ b/saga/gfx.cpp @@ -27,13 +27,16 @@ // described in "Michael Abrash's Graphics Programming Black Book", // Coriolis Group Books, 1997 -#include "saga.h" -#include "yslib.h" +#include "saga/saga.h" +#include "saga/yslib.h" -#include "reinherit.h" +#include "saga/reinherit.h" + +#include "saga/gfx_mod.h" +#include "saga/gfx.h" + +#include "common/system.h" -#include "gfx_mod.h" -#include "gfx.h" namespace Saga { diff --git a/saga/reinherit.h b/saga/reinherit.h index cbec3ffd06..f2826932b9 100644 --- a/saga/reinherit.h +++ b/saga/reinherit.h @@ -23,14 +23,14 @@ // Main Header File -#ifndef SAGA_REINHERIT_H_ -#define SAGA_REINHERIT_H_ +#ifndef SAGA_REINHERIT_H +#define SAGA_REINHERIT_H #include "common/stdafx.h" #include "common/scummsys.h" #include "common/rect.h" -#include "base/engine.h" +class OSystem; namespace Saga { diff --git a/saga/saga.h b/saga/saga.h index 0e8a974e26..bcd3fdc8a0 100644 --- a/saga/saga.h +++ b/saga/saga.h @@ -52,7 +52,7 @@ enum SAGAGameId { GID_IHNM }; -class SagaEngine:public Engine { +class SagaEngine : public Engine { void errorString(const char *buf_input, char *buf_output); protected: |
