| 131 | } |
| 132 | |
| 133 | static void iCSAsyncReadCB(tag_xFile* file) |
| 134 | { |
| 135 | S32 bytes; |
| 136 | xCutscene* csn; |
| 137 | |
| 138 | if (file) |
| 139 | { |
| 140 | if (iFileReadAsyncStatus(file->ps.asynckey, &bytes) == IFILE_RDSTAT_DONE) |
| 141 | { |
| 142 | iFileSeek(file, bytes, IFILE_SEEK_CUR); |
| 143 | } |
| 144 | |
| 145 | csn = xCutscene_CurrentCutscene(); |
| 146 | csn->Waiting = 0; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | U32 iCSFileOpen(xCutscene* csn) |
| 151 | { |
nothing calls this directly
no test coverage detected