Explicit narrowing conversion.

This commit is contained in:
Tom Lally 2022-08-30 13:59:40 +01:00
parent ad735f019c
commit f94edd5c31

View file

@ -563,10 +563,10 @@ int iosuAct_thread()
uint32 name = (uint32)actCemuRequest->uuidName; uint32 name = (uint32)actCemuRequest->uuidName;
uint8 tempArray[] = { uint8 tempArray[] = {
(name >> 24) & 0xFF, static_cast<uint8>((name >> 24) & 0xFF),
(name >> 16) & 0xFF, static_cast<uint8>((name >> 16) & 0xFF),
(name >> 8) & 0xFF, static_cast<uint8>((name >> 8) & 0xFF),
(name >> 0) & 0xFF, static_cast<uint8>((name >> 0) & 0xFF),
0x3A, 0x3A,
0x27, 0x27,
0x5E, 0x5E,