summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-10 17:49:55 +0200
committerRay <[email protected]>2021-06-10 17:49:55 +0200
commit7bc2e922c9a04e9a1bb54088522e0f318feeb17c (patch)
tree4b95c40048cf61c9844f4dacb5430259ccac25a3 /src/utils.c
parentb0dcdf688f587e88ae1426f0987d1b726dde38d2 (diff)
downloadraylib-7bc2e922c9a04e9a1bb54088522e0f318feeb17c.tar.gz
raylib-7bc2e922c9a04e9a1bb54088522e0f318feeb17c.zip
Review some comments
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c
index 2df0a939..2d15bdb3 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -393,7 +393,7 @@ FILE *android_fopen(const char *fileName, const char *mode)
if (asset != NULL)
{
- // Return pointer to file in the assets
+ // Get pointer to file in the assets
return funopen(asset, android_read, android_write, android_seek, android_close);
}
else