2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-08-31 22:35:37 +00:00

Fix --pause-on-exit parsing

The function incorrectly returned `false` instead of a valid (and
expected) enum value.
This commit is contained in:
Romain Vimont
2023-10-24 22:53:41 +02:00
parent 8e7b041f35
commit 9fdb882509

View File

@@ -2261,7 +2261,7 @@ sc_get_pause_on_exit(int argc, char *argv[]) {
}
}
return false;
return SC_PAUSE_ON_EXIT_FALSE;
}
bool