mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-17 17:05:02 +00:00
texture_cache: Fix linear image uploads
* Also fixed build for clang-cl with libc
This commit is contained in:
parent
7d96308759
commit
25c04ad42f
13 changed files with 511 additions and 363 deletions
|
@ -71,8 +71,7 @@ int main(int argc, char* argv[]) {
|
|||
if (!found) {
|
||||
Libraries::LibC::libcSymbolsRegister(&linker->getHLESymbols());
|
||||
}
|
||||
std::jthread mainthread([linker](std::stop_token stop_token, void*) { linker->Execute(); },
|
||||
nullptr);
|
||||
std::thread mainthread([linker]() { linker->Execute(); });
|
||||
Discord::RPC discordRPC;
|
||||
discordRPC.init();
|
||||
discordRPC.update(Discord::RPCStatus::Idling, "");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue