summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 4d8e388b6..2d295ea00 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -253,7 +253,7 @@ private:
253 */ 253 */
254 static const size_t MAX_COUNT = 4096; 254 static const size_t MAX_COUNT = 4096;
255 255
256 static size_t GetSlot(Handle handle) { return handle >> 15; } 256 static u16 GetSlot(Handle handle) { return handle >> 15; }
257 static u16 GetGeneration(Handle handle) { return handle & 0x7FFF; } 257 static u16 GetGeneration(Handle handle) { return handle & 0x7FFF; }
258 258
259 /// Stores the Object referenced by the handle or null if the slot is empty. 259 /// Stores the Object referenced by the handle or null if the slot is empty.