diff options
Diffstat (limited to 'ClientHamr/GuiLua')
-rw-r--r-- | ClientHamr/GuiLua/skang.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ClientHamr/GuiLua/skang.lua b/ClientHamr/GuiLua/skang.lua index 81e65af..655508a 100644 --- a/ClientHamr/GuiLua/skang.lua +++ b/ClientHamr/GuiLua/skang.lua | |||
@@ -199,6 +199,8 @@ scanArguments = function (args) | |||
199 | if '--' == string.sub(v, 1, 2) then pre = '--'; v = string.sub(v, 3, -1) end | 199 | if '--' == string.sub(v, 1, 2) then pre = '--'; v = string.sub(v, 3, -1) end |
200 | if '-' == string.sub(v, 1, 1) then pre = '-'; v = string.sub(v, 2, -1) end | 200 | if '-' == string.sub(v, 1, 1) then pre = '-'; v = string.sub(v, 2, -1) end |
201 | if '+' == string.sub(v, 1, 1) then pre = '+'; v = string.sub(v, 2, -1) end | 201 | if '+' == string.sub(v, 1, 1) then pre = '+'; v = string.sub(v, 2, -1) end |
202 | -- TODO - Make this the opposite of the directory separator for what ever platform we are running on. | ||
203 | -- Which Lua can't figure out I think. | ||
202 | if '/' == string.sub(v, 1, 1) then pre = '/'; v = string.sub(v, 2, -1) end | 204 | if '/' == string.sub(v, 1, 1) then pre = '/'; v = string.sub(v, 2, -1) end |
203 | if '=' == string.sub(v, 1, 1) then pre = '='; v = string.sub(v, 2, -1) end | 205 | if '=' == string.sub(v, 1, 1) then pre = '='; v = string.sub(v, 2, -1) end |
204 | if '&' == string.sub(v, 1, 1) then pre = '&'; v = string.sub(v, 2, -1) end | 206 | if '&' == string.sub(v, 1, 1) then pre = '&'; v = string.sub(v, 2, -1) end |