HW: Properly initialize and shutdown all modules.

This commit is contained in:
bunnei 2015-04-27 22:03:35 -04:00
parent e0cb85691a
commit 57aaaf92db
3 changed files with 8 additions and 3 deletions

View file

@ -63,6 +63,8 @@ void Init() {
/// Shutdown hardware
void Shutdown() {
GPU::Shutdown();
LCD::Shutdown();
LOG_DEBUG(HW, "shutdown OK");
}