| 90 | } |
| 91 | |
| 92 | static float menuGetEntryPos(menu_s* menu, int order) |
| 93 | { |
| 94 | float ret = order*(4.0f+g_imageData[images_appbubble_idx].height); |
| 95 | if (order > menu->curEntry) |
| 96 | ret += 4.0f; |
| 97 | return ret; |
| 98 | } |
| 99 | |
| 100 | static void menuUpdateAnimation(menu_s* menu, float maxScroll, float val) |
| 101 | { |
no outgoing calls
no test coverage detected