diff options
author | Lars Persson | 2007-09-28 20:54:11 +0000 |
---|---|---|
committer | Lars Persson | 2007-09-28 20:54:11 +0000 |
commit | 7b3fe1d12f25dc6bd7503980618afd523f94a189 (patch) | |
tree | 562435321a9c68b239a5032fdb450300c79f206e /backends/platform/symbian/src | |
parent | c6905d56a90e74e1bd5e82313020f85d80ab112b (diff) | |
download | scummvm-rg350-7b3fe1d12f25dc6bd7503980618afd523f94a189.tar.gz scummvm-rg350-7b3fe1d12f25dc6bd7503980618afd523f94a189.tar.bz2 scummvm-rg350-7b3fe1d12f25dc6bd7503980618afd523f94a189.zip |
Updated include order and H file naming
svn-id: r29120
Diffstat (limited to 'backends/platform/symbian/src')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 6 | ||||
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index d8cd5b5091..3337ae6410 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -22,6 +22,9 @@ * $Id$ */ +#include <eikenv.h> // for CEikonEnv::Static() @ Symbian::FatalError() +#include <sdlapp.h> // for CSDLApp::GetExecutablePathCStr() @ Symbian::GetExecutablePath() + #include "backends/platform/symbian/src/SymbianOS.h" #include "backends/platform/symbian/src/SymbianActions.h" #include "common/config-manager.h" @@ -30,8 +33,7 @@ #include "gui/Key.h" #include "gui/message.h" -#include <eikenv.h> // for CEikonEnv::Static() @ Symbian::FatalError() -#include "ESDL/sdlapp.h" // for CSDLApp::GetExecutablePathCStr() @ Symbian::GetExecutablePath() +#include "..\..\sdl\main.cpp" ////////// extern "C" /////////////////////////////////////////////////// namespace Symbian { diff --git a/backends/platform/symbian/src/SymbianOS.h b/backends/platform/symbian/src/SymbianOS.h index c7142b621d..68f692915a 100644 --- a/backends/platform/symbian/src/SymbianOS.h +++ b/backends/platform/symbian/src/SymbianOS.h @@ -25,7 +25,7 @@ #ifndef SDLSYMBIANH #define SDLSYMBIANH -#include "backends/platform/sdl/sdl-common.h" +#include "backends/platform/sdl/sdl.h" /** Vibration support */ #ifdef USE_VIBRA_SE_PXXX |