diff --git a/build/BeagleRescue b/build/BeagleRescue index 6beaee1..f8c57f3 100755 Binary files a/build/BeagleRescue and b/build/BeagleRescue differ diff --git a/src/config/config.json b/src/config/config.json index 7185755..bffe0fe 100644 --- a/src/config/config.json +++ b/src/config/config.json @@ -3,5 +3,5 @@ "WindowName":"Beagle Rescue", "WindowSize":{"w":320,"h":240}, "WindowFullScreen": 0, -"GlobalScale": 1 +"GlobalScale": 3 } diff --git a/src/game/Game.cpp b/src/game/Game.cpp index bc06185..a67f914 100644 --- a/src/game/Game.cpp +++ b/src/game/Game.cpp @@ -280,7 +280,7 @@ void Game::update() // Gravity if (gravityOnPlayer){ - player.getComponent().position.y += 10; + player.getComponent().position.y += 3*gScale; } // for(auto& p: projectiles) // {