look in sd dir too when asking if file exists

This commit is contained in:
Andy2 2011-05-02 18:33:19 -07:00
parent d11ef3c390
commit 0b7891ad8f

View file

@ -445,6 +445,12 @@ public class GameUtils {
} catch ( java.io.IOException ioe ) {
}
}
if ( !exists ) {
File file = getSDPathFor( context, name );
exists = null != file && file.exists();
}
return exists;
}