From b95b3fe4f39dee9f46a522c05791628d085b2704 Mon Sep 17 00:00:00 2001 From: David Corrales Date: Thu, 19 Jul 2007 20:21:47 +0000 Subject: Fixed a subtle bug when browsing directories in the main game chooser. svn-id: r28149 --- backends/fs/posix/posix-fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/fs/posix') diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp index 385bab833c..3708acd2a8 100644 --- a/backends/fs/posix/posix-fs.cpp +++ b/backends/fs/posix/posix-fs.cpp @@ -243,7 +243,7 @@ AbstractFilesystemNode *POSIXFilesystemNode::getParent() const { const char *start = _path.c_str(); const char *end = lastPathComponent(_path); - return new POSIXFilesystemNode(String(start, end - start), false); + return new POSIXFilesystemNode(String(start, end - start), true); } #endif //#if defined(UNIX) -- cgit v1.2.3