diff options
| author | 2015-04-27 22:03:35 -0400 | |
|---|---|---|
| committer | 2015-05-01 18:27:02 -0400 | |
| commit | 57aaaf92dbbdb4c1d43f6b564c7e8f83ab0811e7 (patch) | |
| tree | 851fb394c4fe279ca90cae70112d33aa9c4e7d6b /src/core/hw/hw.cpp | |
| parent | Services: Initialize all state variables at bootup. (diff) | |
| download | yuzu-57aaaf92dbbdb4c1d43f6b564c7e8f83ab0811e7.tar.gz yuzu-57aaaf92dbbdb4c1d43f6b564c7e8f83ab0811e7.tar.xz yuzu-57aaaf92dbbdb4c1d43f6b564c7e8f83ab0811e7.zip | |
HW: Properly initialize and shutdown all modules.
Diffstat (limited to 'src/core/hw/hw.cpp')
| -rw-r--r-- | src/core/hw/hw.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index bed50af50..236958139 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp | |||
| @@ -63,6 +63,8 @@ void Init() { | |||
| 63 | 63 | ||
| 64 | /// Shutdown hardware | 64 | /// Shutdown hardware |
| 65 | void Shutdown() { | 65 | void Shutdown() { |
| 66 | GPU::Shutdown(); | ||
| 67 | LCD::Shutdown(); | ||
| 66 | LOG_DEBUG(HW, "shutdown OK"); | 68 | LOG_DEBUG(HW, "shutdown OK"); |
| 67 | } | 69 | } |
| 68 | 70 | ||