| 289 | } |
| 290 | |
| 291 | void zCutsceneMgrFinishLoad(xBase* to) |
| 292 | { |
| 293 | zCutsceneMgr* t = (zCutsceneMgr*)to; |
| 294 | |
| 295 | while (true) |
| 296 | { |
| 297 | iFileAsyncService(); |
| 298 | xSndUpdate(); |
| 299 | iCSLoadStep(t->csn); |
| 300 | iTRCDisk::CheckDVDAndResetState(); |
| 301 | if (t->csn->Ready) |
| 302 | { |
| 303 | break; |
| 304 | } |
| 305 | iVSync(); |
| 306 | } |
| 307 | zCutsceneMgrPlayStart(t); |
| 308 | zEntEvent(to, to, 0x18); |
| 309 | zEntEvent(&globals.player.ent, 8); |
| 310 | zEntEvent(&globals.player.ent, 4); |
| 311 | return; |
| 312 | } |
| 313 | |
| 314 | void zCutsceneMgrFinishExit(xBase* to) |
| 315 | { |
no test coverage detected