mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-07 01:21:28 +00:00
linux fix
This commit is contained in:
parent
58bd5073c1
commit
f7725f448d
2 changed files with 3 additions and 2 deletions
|
@ -57,8 +57,8 @@ int PS4_SYSV_ABI ps4_fprintf(FILE* file, VA_ARGS) {
|
||||||
} else {
|
} else {
|
||||||
VA_CTX(ctx);
|
VA_CTX(ctx);
|
||||||
char buf[256];
|
char buf[256];
|
||||||
fprintf_ctx(&ctx,buf);
|
fprintf_ctx(&ctx, buf);
|
||||||
return fprintf(file,"%s", buf);
|
return fprintf(file, "%s", buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// 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 <cstdlib>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include "core/hle/libraries/libc/libc_string.h"
|
#include "core/hle/libraries/libc/libc_string.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue