Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
galister committed Apr 10, 2024
1 parent fc158ed commit 97aab43
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ json5 = "0.4.1"
libc = "0.2.153"
log = "0.4.21"
once_cell = "1.19.0"
openxr = { version = "0.18.0", features = ["linked"], optional = true }
openxr = { version = "0.17.1", features = ["linked"], optional = true }
ovr_overlay = { features = [
"ovr_input",
"ovr_system",
Expand Down
2 changes: 1 addition & 1 deletion src/gui/font.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl FontCache {
continue;
}
let g = face.get_char_index(cp);
if g > 0 {
if g.is_some() {
coll.cp_map.insert(cp, idx);
}
}
Expand Down

0 comments on commit 97aab43

Please sign in to comment.