mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-13 06:10:04 +00:00
Kernel/Timer: use unordered_map for callback recording
This commit is contained in:
parent
8fb3d8ff38
commit
5b45a3e1b5
2 changed files with 20 additions and 15 deletions
|
@ -71,8 +71,8 @@ private:
|
|||
bool signaled; ///< Whether the timer has been signaled or not
|
||||
std::string name; ///< Name of timer (optional)
|
||||
|
||||
/// Handle used as userdata to reference this object when inserting into the CoreTiming queue.
|
||||
Handle callback_handle;
|
||||
/// ID used as userdata to reference this object when inserting into the CoreTiming queue.
|
||||
u64 callback_id;
|
||||
|
||||
friend class KernelSystem;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue