Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 15, 2008, 5:47:22 PM (16 years ago)
Author:
scheusso
Message:

some minor bugfix in something we don't use yet (packetgenerator::command)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/merge/src/network/PacketGenerator.cc

    r1264 r1294  
    6464  ENetPacket* command( int dataLength, void *data, int reliable = ENET_PACKET_FLAG_RELIABLE )
    6565  {
    66     void *stream = new char[dataLength + 2*sizeof(int)];
     66    unsigned char *stream = new unsigned char[dataLength + 2*sizeof(int)];
    6767    if(!stream)
    6868      return NULL;
Note: See TracChangeset for help on using the changeset viewer.