From 3f781219484d1bdb474e244a347b8922d1af8e7f Mon Sep 17 00:00:00 2001 From: guy Date: Fri, 3 Oct 2003 09:40:42 +0000 Subject: [PATCH] Patch level : 2.0 588 Files correlati : xvaga.dll Ricompilazione Demo : [ ] Commento : Aggiunto supporto per help zippati git-svn-id: svn://10.65.10.50/trunk@11462 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- xvaga/agasys.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xvaga/agasys.cpp b/xvaga/agasys.cpp index 8e9f945d7..b087e3f74 100755 --- a/xvaga/agasys.cpp +++ b/xvaga/agasys.cpp @@ -102,7 +102,8 @@ bool aga_unzip(const char* zipfile, const char* destdir) wxZipInputStream fin(zipfile, strFileName); wxString strOutFile = destdir; - strOutFile += '/'; + if (!wxEndsWithPathSeparator(strOutFile)) + strOutFile += wxFILE_SEP_PATH; strOutFile += strFileName; wxString strPath;