mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 01:17:47 +00:00
Clean up some warnings
This commit is contained in:
parent
eb394ac0af
commit
e795692614
8 changed files with 27 additions and 20 deletions
|
@ -18,7 +18,7 @@ namespace Kernel {
|
|||
* @param name Optional name of semaphore
|
||||
* @return ResultCode of the error
|
||||
*/
|
||||
ResultCode CreateSemaphore(Handle* handle, u32 initial_count, u32 max_count, const std::string& name = "Unknown");
|
||||
ResultCode CreateSemaphore(Handle* handle, s32 initial_count, s32 max_count, const std::string& name = "Unknown");
|
||||
|
||||
/**
|
||||
* Releases a certain number of slots from a semaphore.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue