Disabled controller support

This commit is contained in:
Anuken
2017-12-24 20:50:00 -05:00
parent 740b996c69
commit 560ab4d379
4 changed files with 30 additions and 15 deletions

View File

@@ -50,8 +50,10 @@ ext.getPlatform = {
if (project.hasProperty("platform")) {
def lc = platform.toLowerCase()
if(lc.equals("windows")){
return "windows64";
if(lc.equals("windows64")) {
return "windows64";
}else if(lc.equals("windows32")){
return "windows32";
}else if(lc.equals("linux")){
return "linux64";
}else if(lc.equals("mac")){