diff options
| author | 2015-04-27 22:45:43 -0400 | |
|---|---|---|
| committer | 2015-05-01 18:27:05 -0400 | |
| commit | d3c2f9a4a4c48e4571cd693a0c1801b665819cdf (patch) | |
| tree | 82d8f104a3098277cf0f311db8e93390a69a0b4a /src/core/hle/shared_page.cpp | |
| parent | Dyncom: Move cream cache to ARMul_State. (diff) | |
| download | yuzu-d3c2f9a4a4c48e4571cd693a0c1801b665819cdf.tar.gz yuzu-d3c2f9a4a4c48e4571cd693a0c1801b665819cdf.tar.xz yuzu-d3c2f9a4a4c48e4571cd693a0c1801b665819cdf.zip | |
HLE: Properly initialize and shutdown remaining modules.
Diffstat (limited to 'src/core/hle/shared_page.cpp')
| -rw-r--r-- | src/core/hle/shared_page.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/shared_page.cpp b/src/core/hle/shared_page.cpp index 568dad684..94fae2551 100644 --- a/src/core/hle/shared_page.cpp +++ b/src/core/hle/shared_page.cpp | |||
| @@ -62,6 +62,8 @@ template void Read<u16>(u16 &var, const u32 addr); | |||
| 62 | template void Read<u8>(u8 &var, const u32 addr); | 62 | template void Read<u8>(u8 &var, const u32 addr); |
| 63 | 63 | ||
| 64 | void Set3DSlider(float amount) { | 64 | void Set3DSlider(float amount) { |
| 65 | memset(&shared_page, 0, sizeof(shared_page)); | ||
| 66 | |||
| 65 | shared_page.sliderstate_3d = amount; | 67 | shared_page.sliderstate_3d = amount; |
| 66 | shared_page.ledstate_3d = (amount == 0.0f); // off when non-zero | 68 | shared_page.ledstate_3d = (amount == 0.0f); // off when non-zero |
| 67 | } | 69 | } |
| @@ -71,4 +73,7 @@ void Init() { | |||
| 71 | Set3DSlider(0.0f); | 73 | Set3DSlider(0.0f); |
| 72 | } | 74 | } |
| 73 | 75 | ||
| 76 | void Shutdown() { | ||
| 77 | } | ||
| 78 | |||
| 74 | } // namespace | 79 | } // namespace |