mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-22 05:36:09 +01:00
lsteamclient: Add missing break in ISteamNetworkingUtils_SetConfigValue switch.
CW-Bug-Id: #22729
This commit is contained in:
parent
40ff3aa623
commit
726879ea78
1 changed files with 4 additions and 2 deletions
|
|
@ -348,7 +348,8 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils003_SetConfigValue( void *arg
|
||||||
params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, \
|
params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, \
|
||||||
params->scopeObj, params->eDataType, &u_fn ); \
|
params->scopeObj, params->eDataType, &u_fn ); \
|
||||||
if (params->_ret) w_##y = *(decltype(w_##y) *)params->pArg; \
|
if (params->_ret) w_##y = *(decltype(w_##y) *)params->pArg; \
|
||||||
}
|
} \
|
||||||
|
break;
|
||||||
|
|
||||||
case 201 /*ConnectionStatusChanged*/: CASE( SteamNetConnectionStatusChanged )
|
case 201 /*ConnectionStatusChanged*/: CASE( SteamNetConnectionStatusChanged )
|
||||||
case 202 /*AuthStatusChanged*/: CASE( SteamNetAuthenticationStatusChanged )
|
case 202 /*AuthStatusChanged*/: CASE( SteamNetAuthenticationStatusChanged )
|
||||||
|
|
@ -571,7 +572,8 @@ NTSTATUS ISteamNetworkingUtils_SteamNetworkingUtils004_SetConfigValue( void *arg
|
||||||
params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, \
|
params->_ret = iface->SetConfigValue( params->eValue, params->eScopeType, \
|
||||||
params->scopeObj, params->eDataType, &u_fn ); \
|
params->scopeObj, params->eDataType, &u_fn ); \
|
||||||
if (params->_ret) w_##y = *(decltype(w_##y) *)params->pArg; \
|
if (params->_ret) w_##y = *(decltype(w_##y) *)params->pArg; \
|
||||||
}
|
} \
|
||||||
|
break;
|
||||||
|
|
||||||
case 201 /*ConnectionStatusChanged*/: CASE( SteamNetConnectionStatusChanged_153a )
|
case 201 /*ConnectionStatusChanged*/: CASE( SteamNetConnectionStatusChanged_153a )
|
||||||
case 202 /*AuthStatusChanged*/: CASE( SteamNetAuthenticationStatusChanged )
|
case 202 /*AuthStatusChanged*/: CASE( SteamNetAuthenticationStatusChanged )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue