mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Misc. Linux improvements and bug fixes. (#121)
Co-authored-by: Tom Lally <tomlally@protonmail.com>
This commit is contained in:
parent
b8d4cf5b29
commit
d3a7b3b5a6
23 changed files with 101 additions and 104 deletions
|
@ -563,10 +563,10 @@ int iosuAct_thread()
|
|||
|
||||
uint32 name = (uint32)actCemuRequest->uuidName;
|
||||
uint8 tempArray[] = {
|
||||
(name >> 24) & 0xFF,
|
||||
(name >> 16) & 0xFF,
|
||||
(name >> 8) & 0xFF,
|
||||
(name >> 0) & 0xFF,
|
||||
static_cast<uint8>((name >> 24) & 0xFF),
|
||||
static_cast<uint8>((name >> 16) & 0xFF),
|
||||
static_cast<uint8>((name >> 8) & 0xFF),
|
||||
static_cast<uint8>((name >> 0) & 0xFF),
|
||||
0x3A,
|
||||
0x27,
|
||||
0x5E,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue