kichikuou / xsystem35-sdl2

Multi-platform implementation of AliceSoft's System3.x game engine.
https://kichikuou.github.io/web/
GNU General Public License v2.0
63 stars 8 forks source link

Dialogue text is not getting displayed #21

Closed fcolecumberri closed 3 years ago

fcolecumberri commented 3 years ago

no_text

The text on the fighting menu and the starting menu do appear, but the dialogue's is missing.

I am running on Gentoo/Linux with a just cloned and compiled xsystem35

kichikuou commented 3 years ago

Did you run sudo make install? It install font files to /usr/local/share/xsystem35/fonts, where xsystem35 searches default font files.

Alternatively, you can specify font locations in .xsys35rc file. Create $HOME/.xsys35rc with the following contents (replace /home/kichikuou/xsystem35-sdl2 with the directory you cloned xsystem35-sdl2):

ttfont_gothic: /home/kichikuou/xsystem35-sdl2/fonts/MTLc3m.ttf
ttfont_mincho: /home/kichikuou/xsystem35-sdl2/fonts/mincho.otf
fcolecumberri commented 3 years ago

Ok, that solved it, I was making a test run

/path/to/xsystem35

now that I installed it, this works, thanks