mirror of
https://github.com/ValveSoftware/Proton
synced 2025-08-31 14:45:23 +00:00
lsteamclient: Consistently use the computed return type.
CW-Bug-Id: #22729
This commit is contained in:
@@ -90,7 +90,7 @@ int cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon(vo
|
||||
|
||||
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute(void *linux_side, const char *pchName, const char *pchKey)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamUserStats*)linux_side)->GetAchievementDisplayAttribute((const char *)pchName, (const char *)pchKey);
|
||||
return (_ret);
|
||||
}
|
||||
@@ -153,7 +153,7 @@ SteamAPICall_t cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeader
|
||||
|
||||
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName(void *linux_side, SteamLeaderboard_t hSteamLeaderboard)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamUserStats*)linux_side)->GetLeaderboardName((SteamLeaderboard_t)hSteamLeaderboard);
|
||||
return (_ret);
|
||||
}
|
||||
|
Reference in New Issue
Block a user