diff options
| author | 2014-06-25 17:32:09 -0400 | |
|---|---|---|
| committer | 2014-06-27 16:58:30 -0400 | |
| commit | 0cc3e85685496f1dd5b742c42d0b2903b9f0c735 (patch) | |
| tree | ffa194504437d7ee6e7ff7814140efe0751bd638 /src/core/system.cpp | |
| parent | Merge pull request #22 from bunnei/loader-improvements (diff) | |
| download | yuzu-0cc3e85685496f1dd5b742c42d0b2903b9f0c735.tar.gz yuzu-0cc3e85685496f1dd5b742c42d0b2903b9f0c735.tar.xz yuzu-0cc3e85685496f1dd5b742c42d0b2903b9f0c735.zip | |
Core: Removed unused directory_file_system and meta_file_system modules.
Core: Updated CMakeLists.txt to remove directory_file_system and meta_file_system modules.
Diffstat (limited to 'src/core/system.cpp')
| -rw-r--r-- | src/core/system.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/system.cpp b/src/core/system.cpp index 9b1e96888..43d0eef2c 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | namespace System { | 15 | namespace System { |
| 16 | 16 | ||
| 17 | volatile State g_state; | 17 | volatile State g_state; |
| 18 | MetaFileSystem g_ctr_file_system; | ||
| 19 | 18 | ||
| 20 | void UpdateState(State state) { | 19 | void UpdateState(State state) { |
| 21 | } | 20 | } |
| @@ -45,7 +44,6 @@ void Shutdown() { | |||
| 45 | CoreTiming::Shutdown(); | 44 | CoreTiming::Shutdown(); |
| 46 | VideoCore::Shutdown(); | 45 | VideoCore::Shutdown(); |
| 47 | Kernel::Shutdown(); | 46 | Kernel::Shutdown(); |
| 48 | g_ctr_file_system.Shutdown(); | ||
| 49 | } | 47 | } |
| 50 | 48 | ||
| 51 | } // namespace | 49 | } // namespace |