thom_gog: Anyone on Linux with 1.02?
Under 1.01 I still had that bug where typing my characters name during creation doubled all the chars. So Verg would turn into vVeerrgg. Anyone know if that's been fixed? The patch notes don't mention it, and it's been around since release.
mbom: It's a unity bug that they really should know about.
Also, good luck updating. There's no linux patch, so you have to download the entire 30gbs again.
It's SDL2 bug which Unity3D might or might not workaround.
Just for completeness, SDL2 is consumed from <game folder>/game/Kingmaker_Data/Plugins/x86_64/libSDL2-2.0.so
The lack of the minor version (latest SDL2: 2.0.*8*) in the filename bothered me(what if very old SDL2 is used???) so I followed
http://sdl.beuc.net/sdl.wiki/SDL-1.3/SDL_GetVersion to calm myself:
```
$ gcc -I /usr/include/SDL2 -L /path/to//PathfinderKingmaker/game/Kingmaker_Data/Plugins/x86_64 -lSDL2-2.0 -o sdlver sdlver.c
$ LD_LIBRARY_PATH=/path/to/PathfinderKingmaker/game/Kingmaker_Data/Plugins/x86_64 ./sdlver
We compiled against SDL version 2.0.8 ...
But we linked against SDL version 2.0.8.
```
>>> Game using latest SDL2!
Edit: formatting