Update to latest ctrcommon.

This commit is contained in:
Steven Smith 2015-02-18 21:39:29 -08:00
parent 7bb92b3f75
commit 4d594ad4dc

View File

@ -75,7 +75,9 @@ int main(int argc, char **argv) {
App targetDelete;
bool obtained = false;
if(mode == INSTALL) {
obtained = ui_select_file(&targetInstall, "sdmc:", extensions, onLoop);
obtained = ui_select_file(&targetInstall, "sdmc:", extensions, [&](bool inRoot) {
return onLoop();
});
} else if(mode == DELETE) {
obtained = ui_select_app(&targetDelete, destination, onLoop);
}