Browse Source

[hle/acc] fix (false) return where it's just 2

Signed-off-by: lizzie <lizzie@eden-emu.dev>
pull/3763/head
lizzie 3 days ago
parent
commit
03f8956367
  1. 3
      src/core/hle/service/acc/acc.cpp

3
src/core/hle/service/acc/acc.cpp

@ -712,9 +712,8 @@ public:
private: private:
void CheckAvailability(HLERequestContext& ctx) { void CheckAvailability(HLERequestContext& ctx) {
LOG_DEBUG(Service_ACC, "(STUBBED) called"); LOG_DEBUG(Service_ACC, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ResultSuccess); rb.Push(ResultSuccess);
rb.Push(false); // TODO: Check when this is supposed to return true and when not
} }
void GetAccountId(HLERequestContext& ctx) { void GetAccountId(HLERequestContext& ctx) {

Loading…
Cancel
Save