Skip to content
Snippets Groups Projects
Commit 1c4ab938 authored by Jeija's avatar Jeija
Browse files

Fix a dumb bug that conflicted with different things in the luacontroller

parent eeed4f14
No related branches found
No related tags found
No related merge requests found
...@@ -57,9 +57,9 @@ end ...@@ -57,9 +57,9 @@ end
local generate_name = function (ports, overwrite) local generate_name = function (ports, overwrite)
local overwrite = overwrite or {} local overwrite = overwrite or {}
local d = overwrite.d or (ports.d and 1 or 0) local d = overwrite.d or (ports.d and 1 or 0)
local c = overwrite.d or (ports.c and 1 or 0) local c = overwrite.c or (ports.c and 1 or 0)
local b = overwrite.d or (ports.b and 1 or 0) local b = overwrite.b or (ports.b and 1 or 0)
local a = overwrite.d or (ports.a and 1 or 0) local a = overwrite.a or (ports.a and 1 or 0)
return BASENAME..d..c..b..a return BASENAME..d..c..b..a
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment