Browse Source
Implemented InitializeApplicationInfo & InitializeApplicationInfoRestricted
Implemented InitializeApplicationInfo & InitializeApplicationInfoRestricted
InitializeApplicationInfoRestricted will need further implementation as it's checking for other user requirements about the game. As we're emulating, we're assuming the user owns the game so we skip these checks currently, implementation will need to be added further onnce_cpp
4 changed files with 114 additions and 6 deletions
-
80src/core/hle/service/acc/acc.cpp
-
24src/core/hle/service/acc/acc.h
-
4src/core/hle/service/acc/acc_u0.cpp
-
12src/core/hle/service/acc/errors.h
@ -0,0 +1,12 @@ |
|||
// Copyright 2019 yuzu emulator team |
|||
// Licensed under GPLv2 or any later version |
|||
// Refer to the license.txt file included. |
|||
|
|||
#pragma once |
|||
|
|||
#include "core/hle/result.h" |
|||
|
|||
namespace Service::Account { |
|||
constexpr ResultCode ERR_ACCOUNTINFO_BAD_APPLICATION{ErrorModule::Account, 22}; |
|||
constexpr ResultCode ERR_ACCOUNTINFO_ALREADY_INITIALIZED{ErrorModule::Account, 41}; |
|||
} // namespace Service::Account |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue