Posted August 21, 2016
high rated
On my ArchLinux system only the esc and tab keys were working, so I could not start a game, because I was unable to enter any text.
The game complains during startup that it wants SDL 2.0.5 or higher which has not been released. At first I tried to switch to the system version of SDL2, but that did not help.
I even tried a virtual keyboard, but that did not help either.
Then I finally remembered that it is a C#-program and they often do strange things if the language environment variable is set to something not english.
Solution: LC_ALL=C
And it works.
The game complains during startup that it wants SDL 2.0.5 or higher which has not been released. At first I tried to switch to the system version of SDL2, but that did not help.
I even tried a virtual keyboard, but that did not help either.
Then I finally remembered that it is a C#-program and they often do strange things if the language environment variable is set to something not english.
Solution: LC_ALL=C
And it works.