diff --git a/src/client/camera.rs b/src/client/camera.rs index cb6ac25..b8f106c 100644 --- a/src/client/camera.rs +++ b/src/client/camera.rs @@ -39,8 +39,8 @@ impl Camera { impl Default for Camera { fn default() -> Self { Self { - pos: Vector2::zeros(), - zoom: Zoom::new(0, 0.0), + pos: Vector2::new(-0.5, 0.0).map(FixedDec::from), + zoom: Zoom::new(0, 2.1), } } }