From 87fe737eefc31decbc561e01667010d54795f872 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 3 May 2007 22:57:10 +0000 Subject: [PATCH] Need to wrap this feller too. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@294 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/ezgame/client/EZGameConfigurator.as | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/as/com/threerings/ezgame/client/EZGameConfigurator.as b/src/as/com/threerings/ezgame/client/EZGameConfigurator.as index 153c8242..f139e1e3 100644 --- a/src/as/com/threerings/ezgame/client/EZGameConfigurator.as +++ b/src/as/com/threerings/ezgame/client/EZGameConfigurator.as @@ -30,6 +30,7 @@ import mx.controls.Label; import com.threerings.util.Integer; import com.threerings.util.StreamableHashMap; import com.threerings.util.StringUtil; +import com.threerings.util.langBoolean; import com.threerings.flex.LabeledSlider; @@ -108,7 +109,8 @@ public class EZGameConfigurator extends FlexGameConfigurator params.put(ident, new Integer((control as LabeledSlider).slider.value)); } else if (control is CheckBox) { - params.put(ident, (control as CheckBox).selected); + // ditto above + params.put(ident, new langBoolean((control as CheckBox).selected)); } else if (control is ComboBox) { params.put(ident, (control as ComboBox).value);