| 54 | |
| 55 | static void PlayFMV(char* filename, size_t buttons, F32 time); |
| 56 | U32 iFMVPlay(char* filename, U32 buttons, F32 time, bool skippable, bool lockController) |
| 57 | { |
| 58 | if (filename == NULL) |
| 59 | { |
| 60 | return 1; |
| 61 | } |
| 62 | |
| 63 | frame_num = 0; |
| 64 | while (frame_num >= 0) |
| 65 | { |
| 66 | PlayFMV(filename, buttons, time); |
| 67 | } |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static void Setup_surface_array() |
| 72 | { |