mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
Update kernel.cpp (#2125)
In kernel.cpp boost io_context.reset() deprecated/discontinued in latest versions. Changed to io_context.restart() as recommended.
This commit is contained in:
parent
e134fc5f1e
commit
a5440e0e43
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ static void KernelServiceThread(std::stop_token stoken) {
|
|||
}
|
||||
|
||||
io_context.run();
|
||||
io_context.reset();
|
||||
io_context.restart();
|
||||
|
||||
asio_requests = 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue