diff options
| author | Ray <[email protected]> | 2023-10-10 10:50:09 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-10-10 10:50:09 +0200 |
| commit | b94e6290a4e5e96196e23d66a480cdf9d707c380 (patch) | |
| tree | 770f9f40d0ad54d57a87e875f559a8ca12d53430 /src/rcore_android.c | |
| parent | 67a1e1ffaeb6d12004028ce50d687ffb4be1cbf7 (diff) | |
| download | raylib-b94e6290a4e5e96196e23d66a480cdf9d707c380.tar.gz raylib-b94e6290a4e5e96196e23d66a480cdf9d707c380.zip | |
Added some comments and tweaks #3313
Diffstat (limited to 'src/rcore_android.c')
| -rw-r--r-- | src/rcore_android.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rcore_android.c b/src/rcore_android.c index a3db7e5f..6b43b78b 100644 --- a/src/rcore_android.c +++ b/src/rcore_android.c @@ -228,7 +228,7 @@ void InitWindow(int width, int height, const char *title) // Initialize base path for storage CORE.Storage.basePath = platform.app->activity->internalDataPath; - TRACELOG(LOG_INFO, "ANDROID: App initialized successfully"); + TRACELOG(LOG_INFO, "PLATFORM: ANDROID: Application initialized successfully"); // Android ALooper_pollAll() variables int pollResult = 0; @@ -247,6 +247,7 @@ void InitWindow(int width, int height, const char *title) //if (platform.app->destroyRequested != 0) CORE.Window.shouldClose = true; } } + //-------------------------------------------------------------- } // Close window and unload OpenGL context |
