From 114b92591136fe7458fd4ad77851dcabbcaf1c72 Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.eu> Date: Wed, 21 Mar 2018 14:57:30 +0000 Subject: [PATCH] Change ranges of types of score to maxium possible with 200 points --- src/rugby-possibility.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rugby-possibility.c b/src/rugby-possibility.c index 2930141..9b4bd23 100644 --- a/src/rugby-possibility.c +++ b/src/rugby-possibility.c @@ -98,15 +98,15 @@ rugby_possibility_class_init (RugbyPossibilityClass *klass) properties[PROP_TRIES] = g_param_spec_int ("tries", "Tries", "Converted tries", - 0, 20, 0, + 0, 28, 0, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE); properties[PROP_UTRIES] = g_param_spec_int ("utries", "Utries", "Unconverted tries", - 0, 20, 0, + 0, 40, 0, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE); properties[PROP_KICKS] = g_param_spec_int ("kicks", "Kicks", "Penalties and drop goals", - 0, 20, 0, + 0, 66, 0, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE); g_object_class_install_properties (object_class, -- GitLab