(svn r14898) -Fix (r14897): ccache's caching seems to be a bit too agressive or so.

This commit is contained in:
rubidium 2009-01-07 15:36:37 +00:00
parent 8d017f0ea1
commit fa22bcd456
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ void NetworkAddCommandQueue(NetworkClientSocket *cs, CommandPacket *cp)
// Prepare a DoCommand to be send over the network
void NetworkSend_Command(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd, CommandCallback *callback, const char *text)
{
assert((cmd & CMD_FLAG_MASK) == 0);
assert((cmd & CMD_FLAGS_MASK) == 0);
CommandPacket c;