| 31 | } |
| 32 | |
| 33 | static U16 zUIFont_GetHackFlags(zUIFont* uif) |
| 34 | { |
| 35 | U16 flags = 0; |
| 36 | |
| 37 | if (uif->id == xStrHash("MNU3 PRESS START")) |
| 38 | { |
| 39 | flags |= 0x1; |
| 40 | } |
| 41 | |
| 42 | if (uif->id == xStrHash("MNU3 PRESS START")) |
| 43 | { |
| 44 | flags |= 0x2; |
| 45 | } |
| 46 | |
| 47 | return flags; |
| 48 | } |
| 49 | |
| 50 | void zUIFontInit() |
| 51 | { |
no test coverage detected