git-svn-id: https://openitg.svn.sourceforge.net/svnroot/openitg@11 83fadc84-e282...
authorMatt1360 <matt@reenigne.net>
Wed, 13 Feb 2008 04:07:59 +0000 (04:07 +0000)
committerMatt1360 <matt@reenigne.net>
Wed, 13 Feb 2008 04:07:59 +0000 (04:07 +0000)
src/ScreenArcadePatch.cpp

index 40468e9..4dcc53d 100644 (file)
@@ -194,7 +194,7 @@ bool ScreenArcadePatch::ScanPatch()
 
 bool ScreenArcadePatch::CopyPatch()
 {
-       Root = ssprintf( "/rootfs/stats/patch-unchecked/%s" , aPatches[0].c_str() );
+       Root = ssprintf( "/rootfs/tmp/%s" , aPatches[0].c_str() );
        if( FileCopy( sFile , Root ) )
        {
                m_Status.SetText( "Patch copied! Checking..." );
@@ -234,7 +234,7 @@ bool ScreenArcadePatch::CheckSignature()
        fZip = new RageFileDriverSlice( rf, 0, filesize - 128 );
        
        if (! CryptHelpers::VerifyFile( *fZip, patchSig, patchRSA, sErr ) ) {
-               m_Status.SetText( ssprintf("Patch signature verification failed: %s", sErr.c_str()) );
+               m_Status.SetText( ssprintf("Patch signature verification failed:\n%s", sErr.c_str()) );
                return false;
        }