| 3369 | } |
| 3370 | |
| 3371 | U32 zSceneLeavingLevel() |
| 3372 | { |
| 3373 | // non-matching: instruction order |
| 3374 | |
| 3375 | char curScene[4] = ""; |
| 3376 | char nextScene[4] = ""; |
| 3377 | |
| 3378 | strncpy(curScene, xStrupr(xUtil_idtag2string(globals.sceneCur->sceneID, 0)), 4); |
| 3379 | strncpy(nextScene, |
| 3380 | xStrupr(xUtil_idtag2string(globals.sceneCur->pendingPortal->passet->sceneID, 0)), 4); |
| 3381 | |
| 3382 | return (curScene[0] != nextScene[3]); |
| 3383 | } |
| 3384 | |
| 3385 | const char* zSceneGetLevelName(U32 sceneID) |
| 3386 | { |
no test coverage detected