Browse Source
Merge pull request #95 from bunnei/lm-skip-byte
lm: Minor logging fix to skip a byte.
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
0 deletions
-
src/core/hle/service/lm/lm.cpp
|
|
|
@ -47,6 +47,7 @@ private: |
|
|
|
|
|
|
|
/// Log field type
|
|
|
|
enum class Field : u8 { |
|
|
|
Skip = 1, |
|
|
|
Message = 2, |
|
|
|
Line = 3, |
|
|
|
Filename = 4, |
|
|
|
@ -85,6 +86,11 @@ private: |
|
|
|
while (addr < end_addr) { |
|
|
|
const Field field{static_cast<Field>(Memory::Read8(addr++))}; |
|
|
|
size_t length{Memory::Read8(addr++)}; |
|
|
|
|
|
|
|
if (static_cast<Field>(Memory::Read8(addr)) == Field::Skip) { |
|
|
|
++addr; |
|
|
|
} |
|
|
|
|
|
|
|
switch (field) { |
|
|
|
case Field::Message: |
|
|
|
message = Memory::ReadCString(addr, length); |
|
|
|
@ -99,6 +105,7 @@ private: |
|
|
|
function = Memory::ReadCString(addr, length); |
|
|
|
break; |
|
|
|
} |
|
|
|
|
|
|
|
addr += length; |
|
|
|
} |
|
|
|
|
|
|
|
|