diff options
| author | 2018-07-18 18:55:58 -0700 | |
|---|---|---|
| committer | 2018-07-18 18:55:58 -0700 | |
| commit | 49b0966003caeaafe2f5455d06b16175f02686fb (patch) | |
| tree | 141c8d3c09f9eca021dddedb17cdc3cc6607a19a /src/core/core.h | |
| parent | Merge pull request #680 from bunnei/fix-swizz (diff) | |
| parent | core: Make System's default constructor private (diff) | |
| download | yuzu-49b0966003caeaafe2f5455d06b16175f02686fb.tar.gz yuzu-49b0966003caeaafe2f5455d06b16175f02686fb.tar.xz yuzu-49b0966003caeaafe2f5455d06b16175f02686fb.zip | |
Merge pull request #687 from lioncash/instance
core: Don't construct instance of Core::System, just to access its live instance
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index f90f085ad..c6f69f001 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -168,6 +168,8 @@ public: | |||
| 168 | } | 168 | } |
| 169 | 169 | ||
| 170 | private: | 170 | private: |
| 171 | System(); | ||
| 172 | |||
| 171 | /// Returns the currently running CPU core | 173 | /// Returns the currently running CPU core |
| 172 | Cpu& CurrentCpuCore(); | 174 | Cpu& CurrentCpuCore(); |
| 173 | 175 | ||