We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b57b84 commit 9b23747Copy full SHA for 9b23747
README.md
@@ -1,4 +1,4 @@
1
-<p align="center"><img src="resources/images/logo.png"></p>
+<p align="center"><img src="misc/logo.png"></p>
2
3
## Screenshots
4
misc/logo.png
23 KB
src/game.rs
@@ -230,7 +230,7 @@ impl Game {
230
let tile_start = tile.pos_x;
231
let tile_end = tile.pos_x + 64.;
232
233
- if ferris_pos_x >= tile_start && ferris_pos_x <= tile_end && ferris_pos_y + (-HEIGHT / 2.0) - 64. >= (-HEIGHT / 2.0) - 64. || ferris_pos_y == 0. {
+ if ferris_pos_x >= tile_start && ferris_pos_x <= tile_end && ferris_pos_y + (-HEIGHT / 2.0) - 64. >= (-HEIGHT / 2.0) - 64. {
234
ferris_is_falling_down = false;
235
236
break;
0 commit comments