diff options
| author | 2016-12-07 22:36:40 -0800 | |
|---|---|---|
| committer | 2016-12-07 22:36:40 -0800 | |
| commit | bc48e2bda6012b578748608e093d4f9e25b191cd (patch) | |
| tree | 7ab11cf2244d87e8a05c9a316573b910b3054d7c /src/core/hle/applets/swkbd.cpp | |
| parent | Merge pull request #2282 from lioncash/svc (diff) | |
| parent | applet: Move common IsRunning underlying variable to the Applet class (diff) | |
| download | yuzu-bc48e2bda6012b578748608e093d4f9e25b191cd.tar.gz yuzu-bc48e2bda6012b578748608e093d4f9e25b191cd.tar.xz yuzu-bc48e2bda6012b578748608e093d4f9e25b191cd.zip | |
Merge pull request #2281 from lioncash/applet
applet: minor interface changes
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 1e21337f5..edd30d7ef 100644 --- a/src/core/hle/applets/swkbd.cpp +++ b/src/core/hle/applets/swkbd.cpp | |||
| @@ -70,7 +70,7 @@ ResultCode SoftwareKeyboard::StartImpl(Service::APT::AppletStartupParameter cons | |||
| 70 | 70 | ||
| 71 | DrawScreenKeyboard(); | 71 | DrawScreenKeyboard(); |
| 72 | 72 | ||
| 73 | started = true; | 73 | is_running = true; |
| 74 | return RESULT_SUCCESS; | 74 | return RESULT_SUCCESS; |
| 75 | } | 75 | } |
| 76 | 76 | ||
| @@ -113,7 +113,7 @@ void SoftwareKeyboard::Finalize() { | |||
| 113 | message.sender_id = static_cast<u32>(id); | 113 | message.sender_id = static_cast<u32>(id); |
| 114 | Service::APT::SendParameter(message); | 114 | Service::APT::SendParameter(message); |
| 115 | 115 | ||
| 116 | started = false; | 116 | is_running = false; |
| 117 | } | 117 | } |
| 118 | } | 118 | } |
| 119 | } // namespace | 119 | } // namespace |