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