Revert "remount SD-Gecko when either GCA, GCB or ALL devices are selected"

This reverts commit 8713945ee8.
This commit is contained in:
Christopher Roy Bratusek 2012-08-26 11:27:57 +02:00
parent 8713945ee8
commit 4ba92077cf

View File

@ -3,7 +3,6 @@
#include "libwiigui/gui.h"
#include "main.h"
#include "Tools/fileop.h"
/*** Extern variables ***/
extern GuiWindow * mainWindow;
@ -168,22 +167,18 @@ int devicePrompt()
if(gca_Btn.GetState() == STATE_CLICKED)
{
device = 5;
GCA_Remount();
stop = true;
}
if(gcb_Btn.GetState() == STATE_CLICKED)
{
device = 6;
GCB_Remount();
stop = true;
}
if(all_Btn.GetState() == STATE_CLICKED)
{
device = 7;
GCA_Remount();
GCB_Remount();
stop = true;
}