diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-03-13 22:57:24 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-03-13 22:57:24 -0300 |
commit | 31ce3c5fd0300aac1e86bced1efc5f9ec94bdb6b (patch) | |
tree | b6d3a290333c72940b49ed4c930ff6858a59515e /platform/android/SCsub | |
parent | a65edb4caabec21654c56552e11aacf0fd9291de (diff) |
-fix bug in cache for atlas import/export
-fix some menus
-fixed bug in out transition curves
-detect and remove file:/// in collada
-remove multiscript for now
-remove dependencies on mouse in OS, moved to Input
-avoid fscache from screwing up (fix might make it slower, but it works)
-funcref was missing, it's there now
Diffstat (limited to 'platform/android/SCsub')
-rw-r--r-- | platform/android/SCsub | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/android/SCsub b/platform/android/SCsub index 327b1ffe09..5464376c31 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -8,7 +8,7 @@ android_files = [ 'godot_android.cpp', 'file_access_android.cpp', 'dir_access_android.cpp', - 'audio_driver_android.cpp', + 'audio_driver_opensl.cpp', 'file_access_jandroid.cpp', 'dir_access_jandroid.cpp', 'thread_jandroid.cpp', @@ -37,7 +37,9 @@ abspath=env.Dir(".").abspath pp_basein = open(abspath+"/project.properties.template","rb") pp_baseout = open(abspath+"/java/project.properties","wb") pp_baseout.write( pp_basein.read() ) + refcount=1 + for x in env.android_source_modules: pp_baseout.write("android.library.reference."+str(refcount)+"="+x+"\n") refcount+=1 |