summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-10-13 23:45:57 +0200
committerRay <[email protected]>2021-10-13 23:45:57 +0200
commit83b3478fe40ac3160606392373483649c93aa5ed (patch)
tree01666be170255180fd17eff9cf23763e755ce4a6 /src/utils.c
parent51b147cd322c88d2bc4a84e89f826cac9198a45b (diff)
downloadraylib-83b3478fe40ac3160606392373483649c93aa5ed.tar.gz
raylib-83b3478fe40ac3160606392373483649c93aa5ed.zip
Reviewed some TODO
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c
index dbf4b3bb..215454cc 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -375,8 +375,8 @@ FILE *android_fopen(const char *fileName, const char *mode)
{
if (mode[0] == 'w')
{
- // TODO: fopen() is mapped to android_fopen() that only grants read access
- // to assets directory through AAssetManager but we want to also be able to
+ // fopen() is mapped to android_fopen() that only grants read access to
+ // assets directory through AAssetManager but we want to also be able to
// write data when required using the standard stdio FILE access functions
// Ref: https://stackoverflow.com/questions/11294487/android-writing-saving-files-from-native-code-only
#undef fopen