| 185 | } |
| 186 | |
| 187 | void ConnectionStringTable::writeDemoStartBlock(ResizeBitStream *stream) |
| 188 | { |
| 189 | // ok, writing the demo start block |
| 190 | for(U32 i = 0; i < EntryCount; i++) |
| 191 | { |
| 192 | if(stream->writeFlag(mRemoteStringTable[i].isValidString())) |
| 193 | { |
| 194 | stream->writeString(mRemoteStringTable[i].getString()); |
| 195 | stream->validate(); |
| 196 | } |
| 197 | } |
| 198 | } |
nothing calls this directly
no test coverage detected