mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Netplay: Fix building on clang 17.
This commit is contained in:
parent
7dae4dd3d2
commit
b181842092
5 changed files with 6 additions and 6 deletions
|
@ -31,7 +31,7 @@ int ENET_CALLBACK InterceptCallback(ENetHost* host, ENetEvent* event)
|
|||
// wakeup packet received
|
||||
if (host->receivedDataLength == 1 && host->receivedData[0] == 0)
|
||||
{
|
||||
event->type = SKIPPABLE_EVENT;
|
||||
event->type = static_cast<ENetEventType>(SKIPPABLE_EVENT);
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue