diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-04-27 07:54:05 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-04-27 10:04:02 -0400 |
| commit | 847549663090aeef89debc6213ef17b7f14e0b0e (patch) | |
| tree | 899731d5c75a7b40a8aa72f5e115f86e10078745 /src/core/hle/kernel/svc.cpp | |
| parent | 3c404964097a0882ce9651571ec02c54474350ce (diff) | |
general: Convert assertion macros over to be fmt-compatible
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index cb19b1a69..4df38c977 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -539,7 +539,7 @@ static ResultCode CreateThread(Handle* out_handle, VAddr entry_point, u64 arg, V processor_id); break; default: - ASSERT_MSG(false, "Unsupported thread processor ID: %d", processor_id); + ASSERT_MSG(false, "Unsupported thread processor ID: {}", processor_id); break; } |
