mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-31 20:10:32 +00:00
- useless const qualifier in fmod.h
it only introduced two warnings reported by Clang: warning: 'const' type qualifier on return type has no effect
This commit is contained in:
parent
ca8a44e887
commit
4fae84934b
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ struct FMOD_ASYNCREADINFO
|
|||
|
||||
void *userdata; /* [r] User data pointer. */
|
||||
|
||||
const void (*done)(FMOD_ASYNCREADINFO *info, FMOD_RESULT result); /* FMOD file system wake up function. Use instead of 'result' with FMOD_INIT_ASYNCREAD_FAST to get semaphore based performance improvement. Call this when user file read is finished. Pass result of file read as a parameter. */
|
||||
void (*done)(FMOD_ASYNCREADINFO *info, FMOD_RESULT result); /* FMOD file system wake up function. Use instead of 'result' with FMOD_INIT_ASYNCREAD_FAST to get semaphore based performance improvement. Call this when user file read is finished. Pass result of file read as a parameter. */
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue