diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-05 04:36:57 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-05 04:36:57 +0100 |
commit | 69697535bfca47419333064758bc61a00eca0d79 (patch) | |
tree | b9f7b74ae259da2bb0524f10a8abc38ca9edbcc9 /src/core/hle/service/lm | |
parent | logger: Add NIFM service logging category. (diff) | |
download | yuzu-69697535bfca47419333064758bc61a00eca0d79.tar yuzu-69697535bfca47419333064758bc61a00eca0d79.tar.gz yuzu-69697535bfca47419333064758bc61a00eca0d79.tar.bz2 yuzu-69697535bfca47419333064758bc61a00eca0d79.tar.lz yuzu-69697535bfca47419333064758bc61a00eca0d79.tar.xz yuzu-69697535bfca47419333064758bc61a00eca0d79.tar.zst yuzu-69697535bfca47419333064758bc61a00eca0d79.zip |
Diffstat (limited to 'src/core/hle/service/lm')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index 2843e0e40..7ff9c37f3 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp @@ -125,7 +125,7 @@ private: if (line) { output += std::to_string(line) + ':'; } - if (output.back() == ':') { + if (output.length() > 0 && output.back() == ':') { output += ' '; } output += message; |