diff options
author | Max Horn | 2008-08-13 20:37:54 +0000 |
---|---|---|
committer | Max Horn | 2008-08-13 20:37:54 +0000 |
commit | 8a84e3a46f5e336ed983f1b9b44f6425a9720082 (patch) | |
tree | cde7beab0319883ca56d3c2d7caeb4235cfad91b /backends | |
parent | 56c9e3ab04825845c6f6fd9af9f740a5a715c51a (diff) | |
download | scummvm-rg350-8a84e3a46f5e336ed983f1b9b44f6425a9720082.tar.gz scummvm-rg350-8a84e3a46f5e336ed983f1b9b44f6425a9720082.tar.bz2 scummvm-rg350-8a84e3a46f5e336ed983f1b9b44f6425a9720082.zip |
cleanup
svn-id: r33847
Diffstat (limited to 'backends')
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp index 77530c6073..2105317a96 100644 --- a/backends/fs/windows/windows-fs.cpp +++ b/backends/fs/windows/windows-fs.cpp @@ -227,8 +227,7 @@ WindowsFilesystemNode::WindowsFilesystemNode(const String &p, const bool current char path[MAX_PATH]; GetCurrentDirectory(MAX_PATH, path); _path = path; - } - else { + } else { assert(p.size() > 0); _path = p; } |