1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-09-10 12:03:06 +02:00

Fix missing }

This commit is contained in:
Detanup01 2025-07-19 11:29:05 +02:00 committed by GitHub
parent 8a219d86ae
commit a83335bd3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -557,6 +557,7 @@ EVoiceResult Steam_User::DecompressVoice( const void *pCompressed, uint32 cbComp
{
PRINT_DEBUG_ENTRY();
return voicechat->DecompressVoice(pCompressed, cbCompressed, pDestBuffer, cbDestBufferSize, nBytesWritten, nDesiredSampleRate);
}
EVoiceResult Steam_User::DecompressVoice( const void *pCompressed, uint32 cbCompressed, void *pDestBuffer, uint32 cbDestBufferSize, uint32 *nBytesWritten )
{
@ -861,4 +862,4 @@ bool Steam_User::BSetDurationControlOnlineState( EDurationControlOnlineState eNe
{
PRINT_DEBUG_ENTRY();
return false;
}
}