summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--main.lua2
-rw-r--r--menu.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/main.lua b/main.lua
index e35f6ab..9be9eda 100644
--- a/main.lua
+++ b/main.lua
@@ -26,7 +26,7 @@ debug = false
-- Load
function love.load()
-- Graphics
- love.graphics.setBackgroundColor(189, 95, 93)
+ love.graphics.setBackgroundColor(90, 90, 90)
love.graphics.setDefaultFilter("nearest", "nearest")
-- Font
diff --git a/menu.lua b/menu.lua
index bcac8ef..2eb4210 100644
--- a/menu.lua
+++ b/menu.lua
@@ -78,9 +78,9 @@ function Menu:draw()
love.graphics.setFont(Bold)
local angle = self:getBounce(2)
local dy = self:getBounce()*3
- love.graphics.printf("ROFLNAUTS2",(w/2)*scale,(42+dy)*scale,336,"center",(angle*5)*math.pi/180,scale/2,scale/2,168,12)
+ love.graphics.printf("ROFLNAUTS2",(w/2)*scale,(42+dy)*scale,336,"center",(angle*5)*math.pi/180,scale,scale,168,12)
love.graphics.setFont(Font)
- love.graphics.printf("A game by Awesomenauts Community\nParaDoX, Burningdillo, MilkingChicken, Seltzy, Bronkey, Gnarlyman, Aki\nBased on a game by Jan Willem Nijman, Paul Veer and Bits_Beats XOXO", (w/2)*scale, (h-30)*scale, 336, "center", 0, scale, scale, 168, 4)
+ love.graphics.printf("Use W,S,A,D,G,H or Arrows,Enter,Rshift or Gamepad\n\nA game by Awesomenauts Community\nParaDoX, Burningdillo, MilkingChicken, Seltzy, Bronkey, Gnarlyman, Aki\nBased on a game by Jan Willem Nijman, Paul Veer and Bits_Beats XOXO", (w/2)*scale, (h-42)*scale, 336, "center", 0, scale, scale, 168, 4)
end
function Menu:update(dt)