Browse Source

fsp-srv: Replace one last instance of RESULT_SUCCESS

pull/15/merge
Morph 5 years ago
parent
commit
b840dd9af8
  1. 2
      src/core/hle/service/filesystem/fsp_srv.cpp

2
src/core/hle/service/filesystem/fsp_srv.cpp

@ -1036,7 +1036,7 @@ void FSP_SRV::DisableAutoSaveDataCreation(Kernel::HLERequestContext& ctx) {
fsc.SetAutoSaveDataCreation(false);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
rb.Push(ResultSuccess);
}
void FSP_SRV::SetGlobalAccessLogMode(Kernel::HLERequestContext& ctx) {

Loading…
Cancel
Save