Skip to content

Commit

Permalink
Merge pull request #33 from rwellinger/compile_error_win
Browse files Browse the repository at this point in the history
Compile error win
  • Loading branch information
rwellinger authored Jan 19, 2024
2 parents 2864c32 + 01dd1b7 commit 82b53ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build_release
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Some Cleanup's

# Delivery File Name
ZIP_DELIVERY_FILE="BetterPushback_V108.zip"
ZIP_DELIVERY_FILE="BetterPushback_V1081.zip"

rm -rf BetterPushback_*.zip
rm -rf win_x64
Expand Down
3 changes: 2 additions & 1 deletion src/xplane.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,9 @@ conn_first_handler(XPLMCommandRef cmd, XPLMCommandPhase phase, void *refcon) {
if (phase != xplm_CommandEnd || !bp_init() || bp_started || slave_mode)
return (0);

if (get_pref_widget_status()) // do nothing if preference widget is active
if (get_pref_widget_status()) { // do nothing if preference widget is active
return (1);
}

late_plan_requested = B_TRUE;
(void) bp_cam_stop();
Expand Down

0 comments on commit 82b53ad

Please sign in to comment.