Network - Fixed Unpackb.

Changed Unpackb to "*buffer" instead of "buffer".
This commit is contained in:
Pontus Fransson 2013-12-18 00:08:50 +01:00
parent e1d0150ef1
commit fc8dba6610
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ namespace Oyster
//bool (1-bit) //bool (1-bit)
bool Unpackb(unsigned char buffer[]) bool Unpackb(unsigned char buffer[])
{ {
return buffer; return *buffer;
} }
//char (8-bit) //char (8-bit)