debugger: Fix trailing spaces in PPU register dump

This commit is contained in:
Eladash 2023-06-06 09:11:32 +03:00 committed by Megamouse
parent 3f44ecb77a
commit d5eebd6ab4
3 changed files with 11 additions and 3 deletions

View file

@ -1153,7 +1153,8 @@ void ppu_thread::dump_regs(std::string& ret) const
}
}
fmt::append(ret, "\n");
fmt::trim_back(ret);
ret += '\n';
}
for (uint i = 0; i < 32; ++i)