Bump S option max index to 9.

This commit is contained in:
sorgelig
2021-06-04 23:26:17 +08:00
parent 882983e3b4
commit b148d10f0d

View File

@@ -2038,7 +2038,7 @@ void HandleUI(void)
else if (p[0] == 'S' && (select || recent))
{
ioctl_index = 0;
if ((p[1] >= '0' && p[1] <= '3') || is_x86()) ioctl_index = p[1] - '0';
if ((p[1] >= '0' && p[1] <= '9') || is_x86()) ioctl_index = p[1] - '0';
substrcpy(ext, p, 1);
while (strlen(ext) % 3) strcat(ext, " ");