Browse Source

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

Signed-off-by: lizzie <lizzie@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3763
Reviewed-by: Maufeat <sahyno1996@gmail.com>
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
pull/3764/head
lizzie 3 days ago
committed by crueter
parent
commit
811cc18d74
No known key found for this signature in database GPG Key ID: 425ACD2D4830EBC6
  1. 3
      src/core/hle/service/acc/acc.cpp

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

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

Loading…
Cancel
Save