| 512 | } |
| 513 | |
| 514 | static void XST_unlock_all() |
| 515 | { |
| 516 | if (g_xstdata.loadlock) |
| 517 | { |
| 518 | for (S32 i = 0; i < 16; i++) |
| 519 | { |
| 520 | if (g_xstdata.loadlock & 1 << i) |
| 521 | { |
| 522 | XST_unlock(XST_get_rawinst(i)); |
| 523 | } |
| 524 | } |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | static st_STRAN_SCENE* XST_get_rawinst(S32 index) |
| 529 | { |
no test coverage detected