[loc] finalize translation changes for 3.0

* Also add truncated ISO test image to our repo
* Also don't trigger portable version detection for ALPHA
This commit is contained in:
Pete Batard 2018-03-27 13:13:23 +01:00
parent 1dbbe69a4b
commit fbe47c1abd
5 changed files with 18 additions and 17 deletions

View file

@ -3628,7 +3628,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
tmp = &argv[0][strlen(argv[0]) - 1];
while ((((uintptr_t)tmp) > ((uintptr_t)argv[0])) && (*tmp != '\\'))
tmp--;
if ((strchr(tmp, 'p') != NULL) || (strchr(tmp, 'P') != NULL))
// Need to take 'ALPHA' into account
if ((strchr(tmp, 'p') != NULL) || ((strchr(tmp, 'P') != NULL) && (strchr(tmp, 'P')[1] != 'H')))
ini_flags[0] = 'a';
// Now enable the hogger before processing the rest of the arguments