Skip to content

Commit

Permalink
New release: 233 all
Browse files Browse the repository at this point in the history
  • Loading branch information
obbimi committed Nov 5, 2019
1 parent b7d39aa commit 2e8c3c1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion AndroidManifestBadminton.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.badminton"
android:versionCode="231"
android:versionCode="233"
android:versionName="4.26">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
Expand Down
2 changes: 1 addition & 1 deletion AndroidManifestRacketlon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.racketlon"
android:versionCode="231"
android:versionCode="233"
android:versionName="4.20">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
Expand Down
2 changes: 1 addition & 1 deletion AndroidManifestSquore.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.scoreboard"
android:versionCode="232"
android:versionCode="233"
android:versionName="4.26">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
Expand Down
2 changes: 1 addition & 1 deletion AndroidManifestTabletennis.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doubleyellow.tabletennis"
android:versionCode="231"
android:versionCode="233"
android:versionName="4.26">
<!--
<uses-feature android:name="android.permission.SEND_SMS" android:required="false" />
Expand Down
2 changes: 1 addition & 1 deletion src/com/doubleyellow/scoreboard/model/GameTiming.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface OnTimingChangedListener extends Model.OnModelChangeListener {
public GameTiming(int iGameNrZeroBased, long s, long e) {
this(iGameNrZeroBased, s,e, null);
}
public int getGameNrZeroBased() {
int getGameNrZeroBased() {
return iGameNrZeroBased;
}
GameTiming(int iGameNrZeroBased, long s, long e, List<OnTimingChangedListener> onTimingChangedListeners) {
Expand Down
4 changes: 2 additions & 2 deletions src/com/doubleyellow/scoreboard/model/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -1318,12 +1318,12 @@ public long getDuration() {
long lEnd = 0;
if ( lStart == 0 ) {
// manually entered game durations
for(GameTiming gt: m_lGameTimings) {
for (int gameNrZeroBased = 0; gameNrZeroBased < ListUtil.size(m_lGameTimings); gameNrZeroBased++) {
GameTiming gt = m_lGameTimings.get(gameNrZeroBased);
long lDuration = gt.getEnd() - gt.getStart();
if ( gt.getStart() > 0 || lDuration > 100 || lDuration == 0 ) {
// mixup of gametimings: actual gametimings after demo game timing
lDuration = 6;
int gameNrZeroBased = gt.getGameNrZeroBased();
gt = new GameTiming(gameNrZeroBased, 0, lDuration);
m_lGameTimings.set(gameNrZeroBased, gt);
}
Expand Down

0 comments on commit 2e8c3c1

Please sign in to comment.