diff options
| author | 2015-08-05 21:18:19 -0300 | |
|---|---|---|
| committer | 2015-08-16 01:03:47 -0300 | |
| commit | c39b52f974d5776f3ea347766a88cd5fc8f9f338 (patch) | |
| tree | 327caf134b0026b1a64dc2ef7921fbeda59d34eb /src | |
| parent | Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h} (diff) | |
| download | yuzu-c39b52f974d5776f3ea347766a88cd5fc8f9f338.tar.gz yuzu-c39b52f974d5776f3ea347766a88cd5fc8f9f338.tar.xz yuzu-c39b52f974d5776f3ea347766a88cd5fc8f9f338.zip | |
HLE: Remove empty ConfigMem and SharedPage Shutdown functions
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/config_mem.cpp | 3 | ||||
| -rw-r--r-- | src/core/hle/config_mem.h | 1 | ||||
| -rw-r--r-- | src/core/hle/hle.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/shared_page.cpp | 3 | ||||
| -rw-r--r-- | src/core/hle/shared_page.h | 1 |
5 files changed, 0 insertions, 10 deletions
diff --git a/src/core/hle/config_mem.cpp b/src/core/hle/config_mem.cpp index aea936d2d..94bca0378 100644 --- a/src/core/hle/config_mem.cpp +++ b/src/core/hle/config_mem.cpp | |||
| @@ -36,7 +36,4 @@ void Init() { | |||
| 36 | config_mem.firm_sys_core_ver = 0x2; | 36 | config_mem.firm_sys_core_ver = 0x2; |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | void Shutdown() { | ||
| 40 | } | ||
| 41 | |||
| 42 | } // namespace | 39 | } // namespace |
diff --git a/src/core/hle/config_mem.h b/src/core/hle/config_mem.h index 9825a09e8..24a1254f2 100644 --- a/src/core/hle/config_mem.h +++ b/src/core/hle/config_mem.h | |||
| @@ -52,6 +52,5 @@ static_assert(sizeof(ConfigMemDef) == Memory::CONFIG_MEMORY_SIZE, "Config Memory | |||
| 52 | extern ConfigMemDef config_mem; | 52 | extern ConfigMemDef config_mem; |
| 53 | 53 | ||
| 54 | void Init(); | 54 | void Init(); |
| 55 | void Shutdown(); | ||
| 56 | 55 | ||
| 57 | } // namespace | 56 | } // namespace |
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp index cd0a400dc..98dc8dd58 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp | |||
| @@ -43,8 +43,6 @@ void Init() { | |||
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | void Shutdown() { | 45 | void Shutdown() { |
| 46 | ConfigMem::Shutdown(); | ||
| 47 | SharedPage::Shutdown(); | ||
| 48 | Service::Shutdown(); | 46 | Service::Shutdown(); |
| 49 | 47 | ||
| 50 | LOG_DEBUG(Kernel, "shutdown OK"); | 48 | LOG_DEBUG(Kernel, "shutdown OK"); |
diff --git a/src/core/hle/shared_page.cpp b/src/core/hle/shared_page.cpp index 26d87c7e2..50c5bc01b 100644 --- a/src/core/hle/shared_page.cpp +++ b/src/core/hle/shared_page.cpp | |||
| @@ -18,7 +18,4 @@ void Init() { | |||
| 18 | shared_page.running_hw = 0x1; // product | 18 | shared_page.running_hw = 0x1; // product |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | void Shutdown() { | ||
| 22 | } | ||
| 23 | |||
| 24 | } // namespace | 21 | } // namespace |
diff --git a/src/core/hle/shared_page.h b/src/core/hle/shared_page.h index db6a5340b..379bb7b63 100644 --- a/src/core/hle/shared_page.h +++ b/src/core/hle/shared_page.h | |||
| @@ -54,6 +54,5 @@ static_assert(sizeof(SharedPageDef) == Memory::SHARED_PAGE_SIZE, "Shared page st | |||
| 54 | extern SharedPageDef shared_page; | 54 | extern SharedPageDef shared_page; |
| 55 | 55 | ||
| 56 | void Init(); | 56 | void Init(); |
| 57 | void Shutdown(); | ||
| 58 | 57 | ||
| 59 | } // namespace | 58 | } // namespace |