mirror of https://github.com/Genymobile/scrcpy
Fix --pause-on-exit parsing
The function incorrectly returned `false` instead of a valid (and expected) enum value.
This commit is contained in:
parent
8e7b041f35
commit
9fdb882509
|
@ -2261,7 +2261,7 @@ sc_get_pause_on_exit(int argc, char *argv[]) {
|
|||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
return SC_PAUSE_ON_EXIT_FALSE;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in New Issue