mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 13:01:27 +12:00
Log RPCS3 exit code
This commit is contained in:
parent
9c7d8da298
commit
fdc1a51cba
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,11 @@
|
|||
#include "stdafx.h"
|
||||
#include "rpcs3.h"
|
||||
|
||||
LOG_CHANNEL(sys_log, "SYS");
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
return run_rpcs3(argc, argv);
|
||||
const int exit_code = run_rpcs3(argc, argv);
|
||||
sys_log.notice("RPCS3 terminated with exit code %d", exit_code);
|
||||
return exit_code;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue