Fixup! string_util: Remove StringFromFormat() and related functions
This commit is contained in:
parent
3284bef360
commit
cb3ef488c7
5 changed files with 13 additions and 14 deletions
|
@ -724,7 +724,7 @@ static ResultCode GetResourceLimitLimitValues(VAddr values, Handle resource_limi
|
|||
/// Creates a new thread
|
||||
static ResultCode CreateThread(Handle* out_handle, u32 priority, u32 entry_point, u32 arg,
|
||||
u32 stack_top, s32 processor_id) {
|
||||
std::string name = fmt::format("unknown-{:08X}" PRIX32, entry_point);
|
||||
std::string name = fmt::format("unknown-{:08X}", entry_point);
|
||||
|
||||
if (priority > THREADPRIO_LOWEST) {
|
||||
return ERR_OUT_OF_RANGE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue