mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 14:01:17 +12:00
Explicit narrowing conversion.
This commit is contained in:
parent
ad735f019c
commit
f94edd5c31
1 changed files with 4 additions and 4 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