diff --git a/dynamic.c b/dynamic.c index b64776464a..1c6ca5af3b 100644 --- a/dynamic.c +++ b/dynamic.c @@ -1680,7 +1680,6 @@ bool rarch_environment_cb(unsigned cmd, void *data) break; } - /* Default */ default: RARCH_LOG("Environ UNSUPPORTED (#%u).\n", cmd); return false; diff --git a/libretro-common/include/libretro.h b/libretro-common/include/libretro.h index 9419da6d92..b736da74aa 100644 --- a/libretro-common/include/libretro.h +++ b/libretro-common/include/libretro.h @@ -978,7 +978,9 @@ struct retro_vfs_file_handle; #define RETRO_VFS_FILE_ACCESS_READ_WRITE (RETRO_VFS_FILE_ACCESS_READ | RETRO_VFS_FILE_ACCESS_WRITE) /* Read-write mode, discard contents and overwrites existing file unless RETRO_VFS_FILE_ACCESS_UPDATE is also specified*/ #define RETRO_VFS_FILE_ACCESS_UPDATE_EXISTING (1 << 2) /* Prevents discarding content of existing files opened for writing */ -/* These are only hints. The frontend may choose to ignore them. Other than RAM/CPU/etc use, and how they react to unlikely external interference (for example the file's server going down), behavior will not change. */ +/* These are only hints. The frontend may choose to ignore them. Other than RAM/CPU/etc use, + and how they react to unlikely external interference (for example someone else writing to that file, + or the file's server going down), behavior will not change. */ #define RETRO_VFS_FILE_ACCESS_HINT_NONE (0) /* Indicate that the file will be accessed many times. The frontend should aggressively cache everything. */ #define RETRO_VFS_FILE_ACCESS_HINT_FREQUENT_ACCESS (1 << 0)