diff options
| author | 2016-12-10 07:51:50 -0500 | |
|---|---|---|
| committer | 2016-12-11 00:07:27 +0000 | |
| commit | 963aedd8ccc207d5b65b97bd46b930771f2bda6e (patch) | |
| tree | ab238398e6f8a37e4cd105d19dcec54f82ec1bb2 /src/core/hle/applets/swkbd.cpp | |
| parent | configure_input: Modernize and cleanup input configuration tab (diff) | |
| download | yuzu-963aedd8ccc207d5b65b97bd46b930771f2bda6e.tar.gz yuzu-963aedd8ccc207d5b65b97bd46b930771f2bda6e.tar.xz yuzu-963aedd8ccc207d5b65b97bd46b930771f2bda6e.zip | |
Add all services to the Service namespace
Previously there was a split where some of the services were in the
Service namespace and others were not.
Diffstat (limited to 'src/core/hle/applets/swkbd.cpp')
| -rw-r--r-- | src/core/hle/applets/swkbd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/applets/swkbd.cpp b/src/core/hle/applets/swkbd.cpp index edd30d7ef..059297fbc 100644 --- a/src/core/hle/applets/swkbd.cpp +++ b/src/core/hle/applets/swkbd.cpp | |||
| @@ -94,13 +94,13 @@ void SoftwareKeyboard::Update() { | |||
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | void SoftwareKeyboard::DrawScreenKeyboard() { | 96 | void SoftwareKeyboard::DrawScreenKeyboard() { |
| 97 | auto bottom_screen = GSP_GPU::GetFrameBufferInfo(0, 1); | 97 | auto bottom_screen = Service::GSP::GetFrameBufferInfo(0, 1); |
| 98 | auto info = bottom_screen->framebuffer_info[bottom_screen->index]; | 98 | auto info = bottom_screen->framebuffer_info[bottom_screen->index]; |
| 99 | 99 | ||
| 100 | // TODO(Subv): Draw the HLE keyboard, for now just zero-fill the framebuffer | 100 | // TODO(Subv): Draw the HLE keyboard, for now just zero-fill the framebuffer |
| 101 | Memory::ZeroBlock(info.address_left, info.stride * 320); | 101 | Memory::ZeroBlock(info.address_left, info.stride * 320); |
| 102 | 102 | ||
| 103 | GSP_GPU::SetBufferSwap(1, info); | 103 | Service::GSP::SetBufferSwap(1, info); |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | void SoftwareKeyboard::Finalize() { | 106 | void SoftwareKeyboard::Finalize() { |