mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-12 19:19:43 +00:00
fix indentation
This commit is contained in:
parent
373ae6b107
commit
748aa6fce8
1 changed files with 4 additions and 2 deletions
|
@ -326,10 +326,12 @@ public:
|
||||||
name.begin(),
|
name.begin(),
|
||||||
name.end(),
|
name.end(),
|
||||||
m_name.begin(),
|
m_name.begin(),
|
||||||
[](const char &a){
|
[](const char &a)
|
||||||
|
{
|
||||||
char b = tolower(a);
|
char b = tolower(a);
|
||||||
if (b == '_') b = '.';
|
if (b == '_') b = '.';
|
||||||
return b; });
|
return b;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
__forceinline const std::string& GetName() const
|
__forceinline const std::string& GetName() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue