| 173 | } |
| 174 | |
| 175 | void ConnectionStringTable::readDemoStartBlock(BitStream *stream) |
| 176 | { |
| 177 | // ok, reading the demo start block |
| 178 | for(U32 i = 0; i < EntryCount; i++) |
| 179 | { |
| 180 | if(stream->readFlag()) |
| 181 | { |
| 182 | char buffer[256]; |
| 183 | stream->readString(buffer); |
| 184 | mRemoteStringTable[i] = NetStringHandle(buffer); |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | void ConnectionStringTable::writeDemoStartBlock(ResizeBitStream *stream) |
| 190 | { |
nothing calls this directly
no test coverage detected