Skip to content

Commit ec98f33

Browse files
committed
Update dependencies
1 parent b3fd3bf commit ec98f33

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ tasks.whenTaskAdded { task ->
142142
dependencies {
143143
implementation fileTree(dir: "libs", include: ["*.jar"])
144144
implementation project(':cardboard-sdk')
145-
implementation 'androidx.core:core-ktx:1.8.0'
146-
implementation 'androidx.appcompat:appcompat:1.5.0'
145+
implementation 'androidx.core:core-ktx:1.9.0'
146+
implementation 'androidx.appcompat:appcompat:1.5.1'
147147
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
148148
implementation "androidx.preference:preference-ktx:1.2.0"
149149
implementation "androidx.recyclerview:recyclerview:1.2.1"

src/emulator/cpu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ impl<'a> CpuProcess<'a> {
781781
4 => s,
782782
5 => true,
783783
6 => ov != s,
784-
7 => ((ov != s) || z),
784+
7 => (ov != s) || z,
785785
_ => unreachable!("impossible"),
786786
};
787787
result != negate

0 commit comments

Comments
 (0)