Changed NetHandlers bit read/write types to typedefs

This commit is contained in:
Jordan Cristiano
2015-06-18 20:23:26 -04:00
parent 9ad7c54510
commit 778e20803c
34 changed files with 77 additions and 74 deletions

View File

@ -5,7 +5,7 @@
namespace NetHandlers
{
bool SVC_Sounds_BitRead_Internal(bf_read& bitbuf, SourceGameContext& context, NetMsg::SVC_Sounds* data)
bool SVC_Sounds_BitRead_Internal(BitRead& bitbuf, SourceGameContext& context, NetMsg::SVC_Sounds* data)
{
data->reliableSound = bitbuf.ReadOneBit() != 0;
if (data->reliableSound)
@ -23,7 +23,7 @@ namespace NetHandlers
return !bitbuf.IsOverflowed();
}
bool SVC_Sounds_BitWrite_Internal(bf_write& bitbuf, const SourceGameContext& context, NetMsg::SVC_Sounds* data)
bool SVC_Sounds_BitWrite_Internal(BitWrite& bitbuf, const SourceGameContext& context, NetMsg::SVC_Sounds* data)
{
if (data->reliableSound)
{