Skip to content

Commit

Permalink
Fix pushblock resetting
Browse files Browse the repository at this point in the history
  • Loading branch information
Waterdish committed Mar 16, 2024
1 parent 8216ceb commit b63650a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdkVersion 18
targetSdkVersion 31
versionCode 5
versionName "1.2.0"
versionName "1.2.1"
externalNativeBuild {
//ndkBuild {
// arguments "APP_PLATFORM=android-23"
Expand Down
2 changes: 1 addition & 1 deletion app/jni/src/soh/src/code/z_bgcheck.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ s32 CollisionPoly_LineVsPoly(CollisionPoly* poly, Vec3s* vtxList, Vec3f* posA, V
(poly->normal.x * posB->x + poly->normal.y * posB->y + poly->normal.z * posB->z) * COLPOLY_NORMAL_FRAC +
plane.originDist;

#ifdef __WIIU__
#if defined(__WIIU__) || defined(__ANDROID__)
// on some platforms this ends up as very small numbers due to rounding issues
if (IS_ZERO(planeDistA)) {
planeDistA = 0.0f;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dishii.soh"
android:versionCode="5"
android:versionName="1.2.0"
android:versionName="1.2.1"
android:installLocation="auto">

<!-- OpenGL ES 3.0 -->
Expand Down

0 comments on commit b63650a

Please sign in to comment.