GameState.cpp: GetSerialNumber() was already declared
authorPatrick McIlroy <itgpmc@gmail.com>
Tue, 4 Mar 2008 21:57:39 +0000 (21:57 +0000)
committerPatrick McIlroy <itgpmc@gmail.com>
Tue, 4 Mar 2008 21:57:39 +0000 (21:57 +0000)
MiscITG.cpp: "/Stats" does not exist in the VFS.  In fact, it doesn't exist anywhere...

Makefile.am: there is no need for account for LibUSB because ./configure will not return successfully if it is not there anyway

The following files need to be unversioned out: Makefile, Makefile.in, src/config.h, src/config.h.in, src/Makefile, src/Makefile.in, src/openitg, and src/GtkModule.so.  These are generated files (from ./configure or make) that are machine-dependant and should not be part of the SVN tree.  Run ./auto.sh and then ./configure to regenerate them.  This way, the files will not be changed every time you do an SVN update.  --infamouspat

git-svn-id: https://openitg.svn.sourceforge.net/svnroot/openitg@103 83fadc84-e282-4d84-a09a-c4228d6ae7e5

src/ScreenArcadePatch.cpp

index 89c0e0d..b62e3a5 100644 (file)
@@ -65,7 +65,6 @@ void ScreenArcadePatch::Init()
 
        m_Status.SetText( THEME->GetMetric("ScreenArcadePatch","IntroText") );
        m_Patch.SetText( "Please insert a USB Card containing an update." );
-       m_textHelp->SetText( "THIS IS A TEST LOL" );
 
        this->AddChild( &m_Status );
        this->AddChild( &m_Patch );
@@ -195,7 +194,7 @@ bool ScreenArcadePatch::MountCards()
        sFullDir = sDir + "ITG 2 *.itg";
        
        // Finally mount the card
-       if( MEMCARDMAN->MountCard( pn, -1 ) )
+       if( MEMCARDMAN->MountCard( pn, 3600 ) )
                return true;
        else {
                m_Status.SetText( ssprintf( "Error mounting Player %d's card!" , pn + 1 ) );
@@ -398,6 +397,8 @@ bool ScreenArcadePatch::CopyPatchContents()
                                continue;
 
                        LOG->Trace("ScreenArcadePatch::CopyPatchContents(): copying %s", sPath.c_str());
+                       m_Status.SetText( ssprintf("copying %s", sPath.c_str()) );
+                       SCREENMAN->Draw();
                        RageFileBasic *fCopySrc;
                        RageFile fCopyDest;
                        fCopySrc = rfdZip->Open( sPath, RageFile::READ, iErr );