Skip to content

Commit

Permalink
Finish 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AdemJensen committed Mar 1, 2020
2 parents f2c7a86 + 90d8ed5 commit 3856601
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Build/Android/src/top/chorg/gobang/OBBData.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static class XAPKFile {
new XAPKFile(
true, // true signifies a main file
"1", // the version of the APK that the file was uploaded against
390816096L // the length of the file in bytes
390808563L // the length of the file in bytes
)
};
};
Expand Down
Binary file modified Content/MainScene.umap
Binary file not shown.
Binary file modified Content/MainScene_BuiltData.uasset
Binary file not shown.
Binary file modified Content/UI/General/ConfirmUI.uasset
Binary file not shown.
Binary file modified Content/UI/General/TitleUI.uasset
Binary file not shown.
Binary file modified Content/UI/SinglePlay/SinglePlayGameSettingsUI.uasset
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/Gobang/GobangFramework/Board.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ int Board::isAvailable(int x, int y, Board::ChessPlayer player) const
else
{
if (getBoard(GF(x, MX[i], j), GF(y, MY[i], j)) == Board::VOIDED) aft_gap_for3[i] = aft_gap[i];
else live_breaker[i]++;
else if (aft_gap[i] > 0) live_breaker[i]++;
break;
}
}
Expand Down Expand Up @@ -276,7 +276,7 @@ int Board::isAvailable(int x, int y, Board::ChessPlayer player) const
else
{
if (getBoard(GF(x, MX[i], -j), GF(y, MY[i], -j)) == Board::VOIDED) aft_gap_rev_for3[i] = aft_gap_rev[i];
else live_breaker[i]++;
else if (aft_gap_rev[i] > 0) live_breaker[i]++;
break;
}
}
Expand Down

0 comments on commit 3856601

Please sign in to comment.