diff options
Diffstat (limited to 'saga')
-rw-r--r-- | saga/gfx.cpp | 1 | ||||
-rw-r--r-- | saga/input.cpp | 18 |
2 files changed, 10 insertions, 9 deletions
diff --git a/saga/gfx.cpp b/saga/gfx.cpp index c98ebc5da5..454e368b5e 100644 --- a/saga/gfx.cpp +++ b/saga/gfx.cpp @@ -67,6 +67,7 @@ int GFX_Init(OSystem *system, int width, int height) { GfxModule.black_index = -1; // For now, always show the mouse cursor. + GFX_SetCursor(1); SYSINPUT_ShowMouse(); return R_SUCCESS; diff --git a/saga/input.cpp b/saga/input.cpp index b6f4f97f46..eac43741f3 100644 --- a/saga/input.cpp +++ b/saga/input.cpp @@ -20,15 +20,15 @@ * $Header$ * */ -#include "saga.h" -#include "reinherit.h" - -#include "actor_mod.h" -#include "console_mod.h" -#include "interface_mod.h" -#include "render_mod.h" -#include "scene_mod.h" -#include "script_mod.h" +#include "saga/saga.h" +#include "saga/reinherit.h" + +#include "saga/actor_mod.h" +#include "saga/console_mod.h" +#include "saga/interface_mod.h" +#include "saga/render_mod.h" +#include "saga/scene_mod.h" +#include "saga/script_mod.h" namespace Saga { |