mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-30 21:33:56 +00:00
Fix a couple small style issues.
Trying to be consistent with the coding style..
This commit is contained in:
parent
c02f1ca3e1
commit
612cc37878
@ -98,15 +98,13 @@ unsigned int WINAPI TheThread(void *)
|
||||
// -TheDax
|
||||
std::vector<std::wstring> wideArgs = GetWideCmdLine();
|
||||
std::vector<std::string> argsUTF8;
|
||||
for (auto& string : wideArgs)
|
||||
{
|
||||
for (auto& string : wideArgs) {
|
||||
argsUTF8.push_back(ConvertWStringToUTF8(string));
|
||||
}
|
||||
|
||||
std::vector<const char *> args;
|
||||
|
||||
for (auto& string: argsUTF8)
|
||||
{
|
||||
for (auto& string : argsUTF8) {
|
||||
args.push_back(string.c_str());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user