mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Fix overwriting of OpenArena autoexec
This commit is contained in:
parent
8498047b83
commit
51ef5302e6
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ public class MainActivity extends SDLActivity // implements KeyEvent.Callback
|
||||||
}
|
}
|
||||||
|
|
||||||
public void copy_asset(String path, String name, String newName, boolean force) {
|
public void copy_asset(String path, String name, String newName, boolean force) {
|
||||||
File f = new File(path + "/" + name);
|
File f = new File(path + "/" + newName);
|
||||||
if (!f.exists() || force) {
|
if (!f.exists() || force) {
|
||||||
|
|
||||||
//Ensure we have an appropriate folder
|
//Ensure we have an appropriate folder
|
||||||
|
|
Loading…
Reference in a new issue