| 69 | } |
| 70 | |
| 71 | void menuLoadFileAssoc(void) { |
| 72 | char temp[PATH_MAX + 29]; |
| 73 | |
| 74 | memset(temp, 0, sizeof(temp) - 1); |
| 75 | snprintf(temp, sizeof(temp) - 1, "%s/config/3ds-hbmenu/fileassoc", rootPathBase); |
| 76 | |
| 77 | menuFileAssocScan(temp); |
| 78 | } |
| 79 | |
| 80 | static float menuGetScrollHeight(menu_s* menu) |
| 81 | { |
no test coverage detected