diff options
| author | 2015-01-31 14:23:09 -0200 | |
|---|---|---|
| committer | 2015-02-02 15:37:03 -0200 | |
| commit | a9b86db3cfec5ce907051d6730ffd98c0fd03876 (patch) | |
| tree | 791877de9d2a746a5a73e32a3bb3110670cff91a /src/core/hle/kernel/timer.h | |
| parent | Kernel: Remove previous scheduled event when a Timer is re-Set (diff) | |
| download | yuzu-a9b86db3cfec5ce907051d6730ffd98c0fd03876.tar.gz yuzu-a9b86db3cfec5ce907051d6730ffd98c0fd03876.tar.xz yuzu-a9b86db3cfec5ce907051d6730ffd98c0fd03876.zip | |
Kernel: Use separate Handle tables for CoreTiming userdata
This is to support the removal of GetHandle soon
Diffstat (limited to 'src/core/hle/kernel/timer.h')
| -rw-r--r-- | src/core/hle/kernel/timer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/timer.h b/src/core/hle/kernel/timer.h index c45e79954..f72b8b31b 100644 --- a/src/core/hle/kernel/timer.h +++ b/src/core/hle/kernel/timer.h | |||
| @@ -50,6 +50,9 @@ public: | |||
| 50 | 50 | ||
| 51 | private: | 51 | private: |
| 52 | Timer() = default; | 52 | Timer() = default; |
| 53 | |||
| 54 | /// Handle used as userdata to reference this object when inserting into the CoreTiming queue. | ||
| 55 | Handle callback_handle; | ||
| 53 | }; | 56 | }; |
| 54 | 57 | ||
| 55 | /// Initializes the required variables for timers | 58 | /// Initializes the required variables for timers |