mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
cellKb: fix large ASCII characters for some compilers
This commit is contained in:
parent
eedf96e1f4
commit
b3aff3a1c6
3 changed files with 8 additions and 8 deletions
|
@ -185,7 +185,7 @@ int main(int argc, char** argv)
|
|||
{
|
||||
argv.emplace_back();
|
||||
|
||||
for (u32 i = 1; i < args.length(); i++)
|
||||
for (int i = 1; i < args.length(); i++)
|
||||
{
|
||||
argv.emplace_back(args[i].toStdString());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue