| 469 | } |
| 470 | |
| 471 | void DarkForces::getLevelId(char* name) |
| 472 | { |
| 473 | const char* levelName = agent_getLevelName(); |
| 474 | if (levelName) |
| 475 | { |
| 476 | strcpy(name, levelName); |
| 477 | } |
| 478 | else |
| 479 | { |
| 480 | name[0] = 0; |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | void skipToLevelNextScene(s32 index) |
| 485 | { |
no test coverage detected