aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/symbian
diff options
context:
space:
mode:
authorMax Horn2007-09-18 21:34:57 +0000
committerMax Horn2007-09-18 21:34:57 +0000
commitab8997f64d069d28c33aca830a6b0574bf6fcda3 (patch)
tree524afd9f62caa5e1013183a9f45ad5132782a167 /backends/fs/symbian
parent162460d18ab91c213e4e57c3deea4b591b60a966 (diff)
downloadscummvm-rg350-ab8997f64d069d28c33aca830a6b0574bf6fcda3.tar.gz
scummvm-rg350-ab8997f64d069d28c33aca830a6b0574bf6fcda3.tar.bz2
scummvm-rg350-ab8997f64d069d28c33aca830a6b0574bf6fcda3.zip
Fix linker issues when doing a plugin build, and (hopefully) also on Windows
svn-id: r28950
Diffstat (limited to 'backends/fs/symbian')
-rw-r--r--backends/fs/symbian/symbian-fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp
index d3b39f192c..e8a9553927 100644
--- a/backends/fs/symbian/symbian-fs.cpp
+++ b/backends/fs/symbian/symbian-fs.cpp
@@ -83,7 +83,7 @@ public:
* @param str Path to obtain the last component from.
* @return Pointer to the first char of the last component inside str.
*/
-static const char *lastPathComponent(const Common::String &str) {
+const char *lastPathComponent(const Common::String &str) {
const char *start = str.c_str();
const char *cur = start + str.size() - 2;