diff options
author | Chin <chin.bimbo@gmail.com> | 2014-12-20 04:16:34 +0100 |
---|---|---|
committer | Chin <chin.bimbo@gmail.com> | 2014-12-20 16:03:36 +0100 |
commit | e7956926147d2d2ac6741aee8a150466a5438ca3 (patch) | |
tree | 8a06a500c34248c12fff47998131742c4ca72390 /src/core/hle/kernel/semaphore.h | |
parent | Merge pull request #309 from chinhodado/patch-1 (diff) | |
download | yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar.gz yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar.bz2 yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar.lz yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar.xz yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.tar.zst yuzu-e7956926147d2d2ac6741aee8a150466a5438ca3.zip |
Diffstat (limited to 'src/core/hle/kernel/semaphore.h')
-rw-r--r-- | src/core/hle/kernel/semaphore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/semaphore.h b/src/core/hle/kernel/semaphore.h index f0075fdb8..ad474b875 100644 --- a/src/core/hle/kernel/semaphore.h +++ b/src/core/hle/kernel/semaphore.h @@ -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. |