summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-03-05 18:12:41 +0100
committerRay <[email protected]>2020-03-05 18:12:41 +0100
commitfb2ed693e4ad6cd183d8a4135608c813d8f29358 (patch)
tree344b28d84049ff02408f3df7eb972d6f7b7c2a75 /src/core.c
parent966e8adcf9639c8f524fa99d2edfd348306f45f1 (diff)
downloadraylib-fb2ed693e4ad6cd183d8a4135608c813d8f29358.tar.gz
raylib-fb2ed693e4ad6cd183d8a4135608c813d8f29358.zip
Android: Support file saving to internal data storage
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 42145158..c293379a 100644
--- a/src/core.c
+++ b/src/core.c
@@ -650,7 +650,7 @@ void InitWindow(int width, int height, const char *title)
CORE.Android.app->onAppCmd = AndroidCommandCallback;
CORE.Android.app->onInputEvent = AndroidInputCallback;
- InitAssetManager(CORE.Android.app->activity->assetManager);
+ InitAssetManager(CORE.Android.app->activity->assetManager, CORE.Android.app->activity->internalDataPath);
TRACELOG(LOG_INFO, "Android app initialized successfully");