Skip to content

Commit

Permalink
Style fix for a conditional in GSMux.m.
Browse files Browse the repository at this point in the history
  • Loading branch information
codykrieger committed Nov 24, 2012
1 parent ef4bd0f commit 6a07941
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Classes/GSMux.m
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ + (BOOL)setMode:(GSSwitcherMode)mode
sleep(1);

BOOL integrated = [GSMux isUsingIntegratedGPU];
if ((mode==GSSwitcherModeForceIntegrated && !integrated) || (mode==GSSwitcherModeForceDiscrete && integrated))
if ((mode == GSSwitcherModeForceIntegrated && !integrated)
|| (mode == GSSwitcherModeForceDiscrete && integrated))
forceSwitch(_switcherConnect);

break;
Expand Down

0 comments on commit 6a07941

Please sign in to comment.