mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
dmnt.gen2: fix gt, optimize
This commit is contained in:
parent
20d200471d
commit
4e112de223
1 changed files with 4 additions and 4 deletions
|
@ -2365,18 +2365,18 @@ namespace ams::dmnt {
|
|||
*(cur++) = ';';
|
||||
} else if (name[i] == '>') {
|
||||
*(cur++) = '&';
|
||||
*(cur++) = 'r';
|
||||
*(cur++) = 'g';
|
||||
*(cur++) = 't';
|
||||
*(cur++) = ';';
|
||||
} else {
|
||||
*(cur++) = name[i];
|
||||
}
|
||||
|
||||
if (name[i] == '\x00') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Set the thread entry */
|
||||
AppendReplyFormat(dst_cur, dst_end, "<thread id=\"p%lx.%lx\" core=\"%u\" name=\"%s\" />", m_process_id.value, thread_ids[i], core, sanitized);
|
||||
|
|
Loading…
Reference in a new issue