diff options
| author | 2019-07-12 21:48:46 -0400 | |
|---|---|---|
| committer | 2019-07-12 21:48:49 -0400 | |
| commit | 093e5440e202931402129acabcb73426079552a8 (patch) | |
| tree | e9ba19e06844fb3bf17c5bb7d32d4246baa5b74a /src/core/core.h | |
| parent | Merge pull request #2725 from ogniK5377/mult-audbuffer (diff) | |
| download | yuzu-093e5440e202931402129acabcb73426079552a8.tar.gz yuzu-093e5440e202931402129acabcb73426079552a8.tar.xz yuzu-093e5440e202931402129acabcb73426079552a8.zip | |
core: Remove CurrentArmInterface() global accessor
Replaces the final usage of the global accessor function and removes it.
Removes one more enabler of global state.
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h index 11e73278e..8ebb385ac 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -327,10 +327,6 @@ private: | |||
| 327 | static System s_instance; | 327 | static System s_instance; |
| 328 | }; | 328 | }; |
| 329 | 329 | ||
| 330 | inline ARM_Interface& CurrentArmInterface() { | ||
| 331 | return System::GetInstance().CurrentArmInterface(); | ||
| 332 | } | ||
| 333 | |||
| 334 | inline Kernel::Process* CurrentProcess() { | 330 | inline Kernel::Process* CurrentProcess() { |
| 335 | return System::GetInstance().CurrentProcess(); | 331 | return System::GetInstance().CurrentProcess(); |
| 336 | } | 332 | } |