mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[benchmark-shape,hb-shape-threads] Fix argument parsing order
After recent change.
This commit is contained in:
parent
c03a31417b
commit
697287fbd7
2 changed files with 4 additions and 4 deletions
|
@ -145,8 +145,8 @@ int main(int argc, char** argv)
|
|||
for (unsigned i = 0; i < num_tests; i++)
|
||||
{
|
||||
tests[i].is_variable = true;
|
||||
tests[i].text_path = argv[1 + i * 2];
|
||||
tests[i].font_path = argv[2 + i * 2];
|
||||
tests[i].font_path = argv[1 + i * 2];
|
||||
tests[i].text_path = argv[2 + i * 2];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -185,8 +185,8 @@ int main(int argc, char** argv)
|
|||
for (unsigned i = 0; i < num_tests; i++)
|
||||
{
|
||||
tests[i].is_variable = true;
|
||||
tests[i].text_path = argv[3 + i * 2];
|
||||
tests[i].font_path = argv[4 + i * 2];
|
||||
tests[i].font_path = argv[3 + i * 2];
|
||||
tests[i].text_path = argv[4 + i * 2];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue