yuzu_tester: Display results in table format

This commit is contained in:
Zach Hilman 2019-05-26 13:59:48 -04:00
parent f279e792b7
commit 511bf3435d
3 changed files with 50 additions and 12 deletions

View file

@ -57,7 +57,12 @@ private:
}
void StartIndividual(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Frontend, "called");
const auto name_raw = ctx.ReadBuffer();
const auto name = Common::StringFromFixedZeroTerminatedBuffer(
reinterpret_cast<const char*>(name_raw.data()), name_raw.size());
LOG_DEBUG(Frontend, "called, name={}", name);
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);