diff options
| author | 2018-08-24 21:43:32 -0400 | |
|---|---|---|
| committer | 2018-08-24 21:50:39 -0400 | |
| commit | 43e0d865faa932b980580a79a87d5ea464e9545c (patch) | |
| tree | b4f06db70fe68a3edffc29e9373b9d98b8e35306 /src/core/hle/kernel/thread.h | |
| parent | Port #4013 from Citra: "Init logging sooner so we dont miss some logs on star... (diff) | |
| download | yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.gz yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.xz yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.zip | |
core: Namespace all code in the arm subdirectory under the Core namespace
Gets all of these types and interfaces out of the global namespace.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index adc804248..06edc296d 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -204,7 +204,7 @@ public: | |||
| 204 | return status == ThreadStatus::WaitSynchAll; | 204 | return status == ThreadStatus::WaitSynchAll; |
| 205 | } | 205 | } |
| 206 | 206 | ||
| 207 | ARM_Interface::ThreadContext context; | 207 | Core::ARM_Interface::ThreadContext context; |
| 208 | 208 | ||
| 209 | u32 thread_id; | 209 | u32 thread_id; |
| 210 | 210 | ||