summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/menu.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu.lua b/client/menu.lua
index 9ae1fb9..8673217 100644
--- a/client/menu.lua
+++ b/client/menu.lua
@@ -17,7 +17,7 @@ local function c(...) return {love.math.colorFromBytes(...)} end
local colors = { c(255,64,64), c(255,128,0), c(192,192,64), c(0,192,0),
c(0,192,192), c(64,64,255), c(192,0,192), c(128,128,128)}
-local state = {color=1,focused=nil,name='Susan',errmsg=nil}
+local state = {color=1,focused=nil,name='',errmsg=nil}
local rstate = love.filesystem.read'menu.json'
if rstate then for k,v in pairs(json.decode(rstate)) do state[k]=v end end