Skip to content

Commit

Permalink
Small update of min i max scale
Browse files Browse the repository at this point in the history
  • Loading branch information
szczypiorofix committed Oct 17, 2019
1 parent 00f1d15 commit 1b5a090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Engine* createEngine(void) {
engine->camera = NULL;
engine->musicVolume = 20;
engine->scale = 2;
engine->minScale = 2;
engine->maxScale = 5;
engine->minScale = 2.0f;
engine->maxScale = 5.0f;
engine->tilesOnScreenFromCenterX = 0;
engine->tilesOnScreenFromCenterY = 0;

Expand Down

0 comments on commit 1b5a090

Please sign in to comment.