~verzegnassi-stefano/match-the-color/2.0-old-dev

« back to all changes in this revision

Viewing changes to match-the-color/components/ClassicGameItem.qml

  • Committer: Stefano Verzegnassi
  • Date: 2015-07-21 16:21:19 UTC
  • Revision ID: stefano92.100@gmail.com-20150721162119-i0jnlcmbxrkr9iu2
Various fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
            if (score <= 5)
68
68
                return 5000
69
69
            if (score > 5 && score <= 10)
70
 
                return 4500
 
70
                return 4250
71
71
            if (score > 10 && score <= 20)
72
 
                return 3900
 
72
                return 3750
73
73
            if (score > 20 && score <= 30)
74
 
                return 3200
 
74
                return 3100
75
75
            if (score > 30 && score <= 45)
76
 
                return 2750
 
76
                return 2600
77
77
 
78
 
            return 2500
 
78
            return 2250
79
79
        }
80
80
    }
81
81