Fix return codes

This commit is contained in:
Isaac Connor 2021-02-17 16:42:48 -05:00
parent 2a49bd124f
commit 3e10c3a8a4
1 changed files with 3 additions and 3 deletions

View File

@ -166,7 +166,7 @@ int VncCamera::PrimeCapture() {
width, height, mRfb->width, mRfb->height);
}
return 0;
return 1;
}
int VncCamera::PreCapture() {
@ -201,10 +201,10 @@ int VncCamera::Capture(ZMPacket &zm_packet) {
}
int VncCamera::PostCapture() {
return 0;
return 1;
}
int VncCamera::Close() {
return 0;
return 1;
}
#endif