summaryrefslogtreecommitdiffhomepage
path: root/config/menus/host.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2018-04-08 15:20:58 +0200
committerAki <nthirtyone@gmail.com>2018-04-08 15:20:58 +0200
commitea62ce8ec8ae07ff6d421b4146d2503ef0f67574 (patch)
treeb0adc2b1735d103e55aed7bdd0c462b2ea5e359f /config/menus/host.lua
parent08271656cbe18fbc4432fc758ac42750e818da84 (diff)
parent290d75dceb905217cb67fcb32e95dbeb45e27e3c (diff)
downloadroflnauts-ea62ce8ec8ae07ff6d421b4146d2503ef0f67574.zip
roflnauts-ea62ce8ec8ae07ff6d421b4146d2503ef0f67574.tar.gz
roflnauts-ea62ce8ec8ae07ff6d421b4146d2503ef0f67574.tar.bz2
Merge branch 'love-11.0' into control
Diffstat (limited to 'config/menus/host.lua')
-rw-r--r--config/menus/host.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/menus/host.lua b/config/menus/host.lua
index 2b5fac5..102c4c3 100644
--- a/config/menus/host.lua
+++ b/config/menus/host.lua
@@ -32,7 +32,7 @@ function loadConfigs (dir, process)
local items, icons = {}, {}
for _,file in pairs(love.filesystem.getDirectoryItems(dir)) do
local path = string.format("%s/%s", dir, file)
- if love.filesystem.isFile(path) and file ~= "readme.md" then
+ if love.filesystem.getInfo(path).type == "file" and file ~= "readme.md" then
local item = love.filesystem.load(path)()
if isAvailable(item) then
if process then