Skip to content

Commit

Permalink
Merge pull request #10218 from akallabeth/gfx-ack-invert
Browse files Browse the repository at this point in the history
[client,cmdline] fix inverted frame-ack option
  • Loading branch information
akallabeth committed May 25, 2024
2 parents 0dc9a46 + d4fc2cd commit 6228583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/common/cmdline.c
Original file line number Diff line number Diff line change
Expand Up @@ -2251,7 +2251,7 @@ static int parse_gfx_options(rdpSettings* settings, const COMMAND_LINE_ARGUMENT_
if (bval == PARSE_FAIL)
rc = COMMAND_LINE_ERROR_UNEXPECTED_VALUE;
else if (!freerdp_settings_set_bool(settings, FreeRDP_GfxSuspendFrameAck,
bval != PARSE_OFF))
bval == PARSE_OFF))
rc = COMMAND_LINE_ERROR;
}
}
Expand Down

0 comments on commit 6228583

Please sign in to comment.