mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +01:00
look in sd dir too when asking if file exists
This commit is contained in:
parent
d11ef3c390
commit
0b7891ad8f
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue