diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-09-12 04:49:08 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-09-12 04:49:11 -0400 |
| commit | 04d723baf96e35222c922fb212f92e60f8b7370c (patch) | |
| tree | 531e465a5fbca802ad6523134f0b8f5be12406d5 /src/core/hle/kernel/svc.cpp | |
| parent | 475222a496a67e746db5a8192ac9f34e4a038f1a (diff) | |
svc: Correct parameter type for OutputDebugString()
This should be a u64 to represent size.
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 1c9373ed8..07a6c4014 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -273,7 +273,7 @@ static void Break(u64 reason, u64 info1, u64 info2) { } /// Used to output a message on a debug hardware unit - does nothing on a retail unit -static void OutputDebugString(VAddr address, s32 len) { +static void OutputDebugString(VAddr address, u64 len) { std::string str(len, '\0'); Memory::ReadBlock(address, str.data(), str.size()); LOG_DEBUG(Debug_Emulated, "{}", str); |
