# HG changeset patch # User ib # Date 1395517719 0 # Node ID 22750a12bdc7c2f665ca7fb7d22759a3b25d8650 # Parent 6dab81ea03c3590b2baab0301847378f7628814d Cosmetic: Adjust indent. diff -r 6dab81ea03c3 -r 22750a12bdc7 gui/interface.c --- a/gui/interface.c Sat Mar 22 19:47:44 2014 +0000 +++ b/gui/interface.c Sat Mar 22 19:48:39 2014 +0000 @@ -740,16 +740,16 @@ mixer = data; - mixer_getvolume(mixer, &l, &r); - guiInfo.Volume = FFMAX(l, r); + mixer_getvolume(mixer, &l, &r); + guiInfo.Volume = FFMAX(l, r); - mixer_getbalance(mixer, &b); - guiInfo.Balance = (b + 1.0) * 50.0; // transform -1..1 to 0..100 + mixer_getbalance(mixer, &b); + guiInfo.Balance = (b + 1.0) * 50.0; // transform -1..1 to 0..100 - if (guiInfo.Balance != last_balance) { - uiEvent(ivSetVolume, guiInfo.Volume); - last_balance = guiInfo.Balance; - } + if (guiInfo.Balance != last_balance) { + uiEvent(ivSetVolume, guiInfo.Volume); + last_balance = guiInfo.Balance; + } break;