mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-03 14:48:46 +00:00
clang format
This commit is contained in:
parent
1d1819a3b1
commit
e9a48d0c8f
1 changed files with 4 additions and 4 deletions
|
@ -1,14 +1,13 @@
|
||||||
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include <common/singleton.h>
|
||||||
|
#include <core/linker.h>
|
||||||
#include "common/config.h"
|
#include "common/config.h"
|
||||||
#include "common/logging/log.h"
|
#include "common/logging/log.h"
|
||||||
#include "core/libraries/error_codes.h"
|
#include "core/libraries/error_codes.h"
|
||||||
#include "core/libraries/libs.h"
|
#include "core/libraries/libs.h"
|
||||||
#include "np_manager.h"
|
#include "np_manager.h"
|
||||||
#include <common/singleton.h>
|
|
||||||
#include <common/singleton.h>
|
|
||||||
#include <core/linker.h>
|
|
||||||
|
|
||||||
namespace Libraries::NpManager {
|
namespace Libraries::NpManager {
|
||||||
|
|
||||||
|
@ -2517,7 +2516,8 @@ NpStateCallbackForNpToolkit NpStateCbForNp;
|
||||||
int PS4_SYSV_ABI sceNpCheckCallbackForLib() {
|
int PS4_SYSV_ABI sceNpCheckCallbackForLib() {
|
||||||
// LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
// LOG_ERROR(Lib_NpManager, "(STUBBED) called");
|
||||||
const auto* linker = Common::Singleton<Core::Linker>::Instance();
|
const auto* linker = Common::Singleton<Core::Linker>::Instance();
|
||||||
linker->ExecuteGuest(NpStateCbForNp.func,1, ORBIS_NP_STATE_SIGNED_OUT, NpStateCbForNp.userdata);
|
linker->ExecuteGuest(NpStateCbForNp.func, 1, ORBIS_NP_STATE_SIGNED_OUT,
|
||||||
|
NpStateCbForNp.userdata);
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue