================= idRegister::WriteToDemoFile ================= */
| 175 | ================= |
| 176 | */ |
| 177 | void idRegister::WriteToDemoFile( idDemoFile *f ) { |
| 178 | f->WriteBool( enabled ); |
| 179 | f->WriteShort( type ); |
| 180 | f->WriteInt( regCount ); |
| 181 | for (int i = 0; i < 4; i++) |
| 182 | f->WriteUnsignedShort( regs[i] ); |
| 183 | f->WriteHashString( name ); |
| 184 | } |
| 185 | |
| 186 | /* |
| 187 | ================= |
nothing calls this directly
no test coverage detected