Fixed bytes being written incorrectly

This commit is contained in:
Boondorl 2024-01-06 02:32:25 -05:00 committed by Rachael Alexanderson
commit 5895b88799
4 changed files with 8 additions and 8 deletions

View file

@ -259,7 +259,7 @@ static struct TicSpecial
streamoffs = 0;
}
TicSpecial &operator << (int8_t it)
TicSpecial &operator << (uint8_t it)
{
if (streamptr)
{
@ -2067,7 +2067,7 @@ void Net_NewMakeTic (void)
specials.NewMakeTic ();
}
void Net_WriteInt8 (int8_t it)
void Net_WriteInt8 (uint8_t it)
{
specials << it;
}