summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h
index f1068d23f..8b93ba998 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -12,7 +12,6 @@
12 12
13#include "common/common_types.h" 13#include "common/common_types.h"
14#include "core/file_sys/vfs_types.h" 14#include "core/file_sys/vfs_types.h"
15#include "core/hle/kernel/object.h"
16 15
17namespace Core::Frontend { 16namespace Core::Frontend {
18class EmuWindow; 17class EmuWindow;
@@ -29,7 +28,7 @@ namespace Kernel {
29class GlobalSchedulerContext; 28class GlobalSchedulerContext;
30class KernelCore; 29class KernelCore;
31class PhysicalCore; 30class PhysicalCore;
32class Process; 31class KProcess;
33class KScheduler; 32class KScheduler;
34} // namespace Kernel 33} // namespace Kernel
35 34
@@ -264,10 +263,10 @@ public:
264 [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const; 263 [[nodiscard]] const Core::DeviceMemory& DeviceMemory() const;
265 264
266 /// Provides a pointer to the current process 265 /// Provides a pointer to the current process
267 [[nodiscard]] Kernel::Process* CurrentProcess(); 266 [[nodiscard]] Kernel::KProcess* CurrentProcess();
268 267
269 /// Provides a constant pointer to the current process. 268 /// Provides a constant pointer to the current process.
270 [[nodiscard]] const Kernel::Process* CurrentProcess() const; 269 [[nodiscard]] const Kernel::KProcess* CurrentProcess() const;
271 270
272 /// Provides a reference to the core timing instance. 271 /// Provides a reference to the core timing instance.
273 [[nodiscard]] Timing::CoreTiming& CoreTiming(); 272 [[nodiscard]] Timing::CoreTiming& CoreTiming();