mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-04-06 16:06:02 +00:00
Allow unsupported version to try to run
This commit is contained in:
@@ -227,8 +227,10 @@ int main(int argc, char* argv[]) {
|
||||
fprintf(stderr, "Invalid data received from server: %s\n", config.address, gs_error);
|
||||
exit(-1);
|
||||
} else if (ret == GS_UNSUPPORTED_VERSION) {
|
||||
fprintf(stderr, "Unsupported version: %s\n", gs_error);
|
||||
exit(-1);
|
||||
if (!config.unsupported_version) {
|
||||
fprintf(stderr, "Unsupported version: %s\n", gs_error);
|
||||
exit(-1);
|
||||
}
|
||||
} else if (ret != GS_OK) {
|
||||
fprintf(stderr, "Can't connect to server %s\n", config.address);
|
||||
exit(-1);
|
||||
|
||||
Reference in New Issue
Block a user