diff options
| author | 2021-05-21 01:05:04 -0400 | |
|---|---|---|
| committer | 2021-06-02 00:39:27 -0400 | |
| commit | 12c1766997f2596b4b1b1a6a411e4f6d56605ee7 (patch) | |
| tree | e718a0f18be8aaf664ebdcd197af513e5a118b72 /src/core/hle/service/fatal | |
| parent | Merge pull request #6395 from lioncash/result-move (diff) | |
| download | yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.gz yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.tar.xz yuzu-12c1766997f2596b4b1b1a6a411e4f6d56605ee7.zip | |
general: Replace RESULT_SUCCESS with ResultSuccess
Transition to PascalCase for result names.
Diffstat (limited to 'src/core/hle/service/fatal')
| -rw-r--r-- | src/core/hle/service/fatal/fatal.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp index b7666e95a..2c2619a7d 100644 --- a/src/core/hle/service/fatal/fatal.cpp +++ b/src/core/hle/service/fatal/fatal.cpp | |||
| @@ -135,7 +135,7 @@ void Module::Interface::ThrowFatal(Kernel::HLERequestContext& ctx) { | |||
| 135 | 135 | ||
| 136 | ThrowFatalError(system, error_code, FatalType::ErrorScreen, {}); | 136 | ThrowFatalError(system, error_code, FatalType::ErrorScreen, {}); |
| 137 | IPC::ResponseBuilder rb{ctx, 2}; | 137 | IPC::ResponseBuilder rb{ctx, 2}; |
| 138 | rb.Push(RESULT_SUCCESS); | 138 | rb.Push(ResultSuccess); |
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) { | 141 | void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) { |
| @@ -147,7 +147,7 @@ void Module::Interface::ThrowFatalWithPolicy(Kernel::HLERequestContext& ctx) { | |||
| 147 | ThrowFatalError(system, error_code, fatal_type, | 147 | ThrowFatalError(system, error_code, fatal_type, |
| 148 | {}); // No info is passed with ThrowFatalWithPolicy | 148 | {}); // No info is passed with ThrowFatalWithPolicy |
| 149 | IPC::ResponseBuilder rb{ctx, 2}; | 149 | IPC::ResponseBuilder rb{ctx, 2}; |
| 150 | rb.Push(RESULT_SUCCESS); | 150 | rb.Push(ResultSuccess); |
| 151 | } | 151 | } |
| 152 | 152 | ||
| 153 | void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) { | 153 | void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) { |
| @@ -163,7 +163,7 @@ void Module::Interface::ThrowFatalWithCpuContext(Kernel::HLERequestContext& ctx) | |||
| 163 | 163 | ||
| 164 | ThrowFatalError(system, error_code, fatal_type, info); | 164 | ThrowFatalError(system, error_code, fatal_type, info); |
| 165 | IPC::ResponseBuilder rb{ctx, 2}; | 165 | IPC::ResponseBuilder rb{ctx, 2}; |
| 166 | rb.Push(RESULT_SUCCESS); | 166 | rb.Push(ResultSuccess); |
| 167 | } | 167 | } |
| 168 | 168 | ||
| 169 | void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) { | 169 | void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) { |