🎨 Reformatted code

This commit is contained in:
2021-01-15 11:03:58 +01:00
parent 57b0d3a184
commit c3e01fc5c8
2 changed files with 21 additions and 16 deletions

View File

@ -97,7 +97,7 @@ void PrintLicense()
std::string GetAppName(const char *raw)
{
std::string r(raw);
int first = r.find_last_of(moPATHSEP) + 1;
int first = r.find_last_of(MO_PATHSEP) + 1;
r = r.substr(first, r.length() - first);
return r;
}