summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 47c6966..c0d5b14 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -24,7 +24,7 @@ inline void incrementIfSet(const Game& game, int& count, int x, int y, Tile val
24} 24}
25 25
26inline int getZoomLevel(const Game& game) { 26inline int getZoomLevel(const Game& game) {
27 return (game.curZoom - INIT_ZOOM) / 2; 27 return game.curZoom - INIT_ZOOM;
28} 28}
29 29
30void tick( 30void tick(