diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 17:01:37 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 17:01:37 -0700 |
commit | af1c26fa866a290eeace75fdf4e0bac8b43e09c5 (patch) | |
tree | a2c568cc4b06363b4e4aca6aa0017f122358ed5b /src/settings.c | |
parent | 5b7e4668d549237e02dfe0580918c48b6d3b5c2d (diff) |
Added zoom speed
Diffstat (limited to 'src/settings.c')
-rw-r--r-- | src/settings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.c b/src/settings.c index 268505e..076166d 100644 --- a/src/settings.c +++ b/src/settings.c @@ -18,7 +18,8 @@ void initSettings(Settings * settings) { .renderWidth = 640, .renderHeight = 360, .useWorldRenderTexture = true, - .previewMouseSensitivity = 0.01 + .previewMouseSensitivity = 0.01, + .previewZoomSpeed = 2.0 }; } |