diff options
author | Aki <nthirtyone@gmail.com> | 2017-09-07 04:45:33 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-09-07 04:45:33 +0200 |
commit | 37da34f0dbc6f6fe58629e52a7126caed4f10434 (patch) | |
tree | 53774ba4d9bc3230459d5f379ddefd8d062ac605 /config/menus | |
parent | ffce9a325fb5947996bacc9e2d6d19bcef900875 (diff) | |
download | roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.zip roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.tar.gz roflnauts-37da34f0dbc6f6fe58629e52a7126caed4f10434.tar.bz2 |
Renamed filepath to filename
Diffstat (limited to 'config/menus')
-rw-r--r-- | config/menus/host.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/menus/host.lua b/config/menus/host.lua index 6861d91..07c5b80 100644 --- a/config/menus/host.lua +++ b/config/menus/host.lua @@ -19,7 +19,7 @@ do if love.filesystem.isFile(path) and filename ~= "readme.md" then local map = love.filesystem.load(path)() local i, name = map.portrait, map.name - map.filepath = path + map.filename = path if i then table.insert(icons, love.graphics.newQuad((i-1)*76, 0, 76, 37, 532, 37)) table.insert(maps, map) |