diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-04-05 00:05:57 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-10 06:03:11 +0200 |
commit | f279e792b7c23a9fabce7c56c53c01fcf4e87547 (patch) | |
tree | 1229e5662adc8976b24471de7bd2dc3857c2ab58 /src/yuzu_tester/yuzu.cpp | |
parent | yuzu_tester: Add 'yuzutest' service (diff) | |
download | yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.gz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.bz2 yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.lz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.xz yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.tar.zst yuzu-f279e792b7c23a9fabce7c56c53c01fcf4e87547.zip |
Diffstat (limited to 'src/yuzu_tester/yuzu.cpp')
-rw-r--r-- | src/yuzu_tester/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index 84d277fcf..0f7067541 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp @@ -170,7 +170,7 @@ int main(int argc, char** argv) { bool finished = false; int return_value = 0; - const auto callback = [&finished, &return_value](u32 code, std::string string) { + const auto callback = [&finished, &return_value](std::vector<Service::Yuzu::TestResult>) { finished = true; return_value = code & 0xFF; const auto text = fmt::format("Test Finished [Result Code: {:08X}]\n{}", code, string); |