From 235bbdcbadf4524882b82757506ce1e9543a80ad Mon Sep 17 00:00:00 2001 From: luca Date: Wed, 22 Sep 2004 10:24:54 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20level=20=20=20=20=20=20=20=20=20:2.1=20?= =?UTF-8?q?118=20Files=20correlati=20=20=20=20=20:ve5.exe=20Ricompilazione?= =?UTF-8?q?=20Demo=20:=20[=20]=20Commento=20=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20:=20AO21039=20=20e=20bug=200000228=20Il=20ripristino=20dei?= =?UTF-8?q?=20documenti=20non=20funziona=20correttamente,=20in=20sostanza?= =?UTF-8?q?=20il=20programma=20si=20aspetta=20che=20sul=20Floppy=20ci=20si?= =?UTF-8?q?a=20un=20file=20di=20nome=20"VE.zipVE.z00"=20mentre=20invece=20?= =?UTF-8?q?c'=C3=A8=20un=20file=20"VE.z00",=20tant'=C3=A8=20vero=20che=20s?= =?UTF-8?q?e=20lo=20ridenomino=20col=20nome=20che=20si=20aspetta,=20funzio?= =?UTF-8?q?na=20correttamente.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.65.10.50/trunk@12320 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- include/archives.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/include/archives.cpp b/include/archives.cpp index 2387dadd4..03f7cc99a 100755 --- a/include/archives.cpp +++ b/include/archives.cpp @@ -459,13 +459,10 @@ bool TArchive::unzip( TString16 ext; ext.format("z%02d", d); TFilename src; src << floppy << ':' << SLASH; - if (xvt_fsys_is_removable_drive(src)) - { - const char* gino = src << output.name(); - message_box("Inserire il disco %d contenente il file %s", d+1, gino); - } src << output.name(); src.ext(ext); + if (xvt_fsys_is_removable_drive(src)) + message_box("Inserire il disco %d contenente il file %s", d+1, (const char*)src); while (!src.exist()) {