mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +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.end(),
|
||||
m_name.begin(),
|
||||
[](const char &a){
|
||||
[](const char &a)
|
||||
{
|
||||
char b = tolower(a);
|
||||
if (b == '_') b = '.';
|
||||
return b; });
|
||||
return b;
|
||||
});
|
||||
}
|
||||
|
||||
__forceinline const std::string& GetName() const
|
||||
|
|
Loading…
Add table
Reference in a new issue