diff options
author | Lars Persson | 2009-09-01 07:44:21 +0000 |
---|---|---|
committer | Lars Persson | 2009-09-01 07:44:21 +0000 |
commit | 19d55c04903e331b940f4a4695b0a984bb44d2f2 (patch) | |
tree | 464030a108e3dec3bf13062d6c7f8273706f2358 /backends/platform/symbian/src | |
parent | 28d7d59de34c3a882327f33c824c6cdff7f35b1a (diff) | |
download | scummvm-rg350-19d55c04903e331b940f4a4695b0a984bb44d2f2.tar.gz scummvm-rg350-19d55c04903e331b940f4a4695b0a984bb44d2f2.tar.bz2 scummvm-rg350-19d55c04903e331b940f4a4695b0a984bb44d2f2.zip |
Updated to support multiple exes
svn-id: r43877
Diffstat (limited to 'backends/platform/symbian/src')
-rw-r--r-- | backends/platform/symbian/src/ScummApp.cpp | 4 | ||||
-rw-r--r-- | backends/platform/symbian/src/ScummApp.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/symbian/src/ScummApp.cpp b/backends/platform/symbian/src/ScummApp.cpp index 82e62412e8..a3ce692368 100644 --- a/backends/platform/symbian/src/ScummApp.cpp +++ b/backends/platform/symbian/src/ScummApp.cpp @@ -114,6 +114,10 @@ TUid CScummApp::AppDllUid() const { return TUid::Uid(ScummUid); } +void CScummApp::GetDataFolder(TDes& aDataFolder) +{ + aDataFolder = _L("ScummVM"); +} ///////////////////////////////////////////////////////////////////////////////////////////////// diff --git a/backends/platform/symbian/src/ScummApp.h b/backends/platform/symbian/src/ScummApp.h index bf0eb6f436..8cfdbdb92f 100644 --- a/backends/platform/symbian/src/ScummApp.h +++ b/backends/platform/symbian/src/ScummApp.h @@ -45,6 +45,7 @@ public: TInt ViewResourceId(); #endif TUid AppDllUid() const; + void GetDataFolder(TDes& aDataFolder); #if defined (EPOC_AS_APP) && !defined (UIQ3) && !defined (S60V3) TECompXL iECompXL; #endif |