| 470 | } /* SDLWaitFrame */ |
| 471 | |
| 472 | void FlcInitFirstFrame() |
| 473 | { flc.FrameSize=16; |
| 474 | flc.FrameCount=0; |
| 475 | if(fseek(flc.file, 128, SEEK_SET)) { |
| 476 | //printf("Fseek read failed\n"); |
| 477 | throw Exception("Fseek read failed for flx file"); |
| 478 | }; |
| 479 | FlcReadFile(flc.FrameSize); |
| 480 | } /* FlcInitFirstFrame */ |
| 481 | |
| 482 | int FlcInit(const char *filename) |
| 483 | { flc.pMembuf=NULL; |
no test coverage detected