| 889 | } |
| 890 | |
| 891 | void ReadModelStringLen(char *ptr, int len, CFILE *infile) { |
| 892 | int i; |
| 893 | |
| 894 | int mlen = cf_ReadInt(infile); |
| 895 | for (i = 0; i < mlen; i++) |
| 896 | ptr[i] = cf_ReadByte(infile); |
| 897 | } |
| 898 | |
| 899 | // Given a modelnumber, opens the original pof file and attempts to rematch that |
| 900 | // models textures with the bitmaps with have in memory |
no test coverage detected