Skip to content

Commit 0e2addd

Browse files
Fixed a fancy visual bug in the editor
thats fancy
1 parent b17326c commit 0e2addd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@ async fn main() {
15681568
);
15691569

15701570
// Draws the ground
1571-
for i in 0..screen_width() as i32 / 160 + 2 {
1571+
for i in -1..screen_width() as i32 / 160 + 2 {
15721572
draw_texture_ex(
15731573
&grnd_texture,
15741574
i as f32 * 155.0 - (cam_pos_x*5.0 % 155.0),

0 commit comments

Comments
 (0)