summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/handle_table.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-25 16:01:22 +0100
committerLioncash <mathew1800@gmail.com>2019-02-25 16:14:05 +0100
commit4f8cd74061464d01e0c3a4ea47a4141e3597cb57 (patch)
treef5aac572fb3f670eb607ac9fbb1ca559a9845e59 /src/core/hle/kernel/handle_table.h
parentkernel/handle_table: Resolve truncation warnings (diff)
downloadyuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar.gz
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar.bz2
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar.lz
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar.xz
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.tar.zst
yuzu-4f8cd74061464d01e0c3a4ea47a4141e3597cb57.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/handle_table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/handle_table.h b/src/core/hle/kernel/handle_table.h
index 89a3bc740..5fa55c783 100644
--- a/src/core/hle/kernel/handle_table.h
+++ b/src/core/hle/kernel/handle_table.h
@@ -107,10 +107,10 @@ private:
* Global counter of the number of created handles. Stored in `generations` when a handle is
* created, and wraps around to 1 when it hits 0x8000.
*/
- u16 next_generation;
+ u16 next_generation = 1;
/// Head of the free slots linked list.
- u16 next_free_slot;
+ u16 next_free_slot = 0;
};
} // namespace Kernel