From 64444251d46cb34a47ec1a9cad900915551b312a Mon Sep 17 00:00:00 2001 From: janwas Date: Wed, 30 Jun 2004 18:47:15 +0000 Subject: [PATCH] fixed bug (missing else) reported by philip. thanks! This was SVN commit r615. --- source/lib/res/vfs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/lib/res/vfs.cpp b/source/lib/res/vfs.cpp index 977d2b32b7..38bf5fe5dc 100755 --- a/source/lib/res/vfs.cpp +++ b/source/lib/res/vfs.cpp @@ -1028,6 +1028,7 @@ int vfs_realpath(const char* fn, char* full_path) if(loc->archive <= 0) dir = loc->dir.c_str(); // file is in archive + else { // "dir" is the archive filename dir = h_filename(loc->archive);