mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Use more starts_with
This commit is contained in:
parent
d7dd4897f8
commit
8762f2a588
4 changed files with 4 additions and 4 deletions
|
|
@ -166,7 +166,7 @@ void GLVertexDecompilerThread::insertMainStart(std::stringstream & OS)
|
|||
{
|
||||
for (const ParamItem &PI : PT.items)
|
||||
{
|
||||
if (PI.name.substr(0, 7) == "dst_reg")
|
||||
if (PI.name.starts_with("dst_reg"))
|
||||
continue;
|
||||
|
||||
OS << " " << PT.type << " " << PI.name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue