Skip to content

Commit 6d1eaa6

Browse files
committed
Changed bool to false when closing
1 parent 22cf8ae commit 6d1eaa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/support/uvfile.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ void PCSX::UvFifoListener::start(unsigned port, uv_loop_t *loop, uv_async_t *asy
879879
} else {
880880
uv_close(reinterpret_cast<uv_handle_t *>(tcp),
881881
[](uv_handle_t *handle) { delete reinterpret_cast<uv_tcp_t *>(handle); });
882-
listener->m_listening = true;
882+
listener->m_listening = false;
883883
}
884884
});
885885
if (result != 0) {

0 commit comments

Comments
 (0)