Maarten ter Huurne
Maarten ter Huurne
For Linux and BSD, we could use [the .desktop format](https://specifications.freedesktop.org/desktop-entry-spec/latest/) to specify the working dir using the `Path` key. That is, we wouldn't change the working directory inside openMSX on...
Thanks for the patch! The Meson build is still experimental and isn't part of our CI infrastructure yet, so it easily gets out of date. After the 16.0 release I...
I agree with Manuel that 4:3 is the correct aspect ratio for MSX games. So I'd like to rephrase the problem as "how can we better map 4:3 games to...
I was asked to give my opinion as well, as one of the core openMSX developers. When it comes to preservation, I think there are two different ways to preserve...
`libsdl-ttf2.0-dev` is SDL_ttf for SDL 1.2. The `master` branch uses SDL2 instead, for which you need to install `libsdl2-ttf-dev`.
Can you check `derived/x86_64-linux-opt/config/probed_defs.mk` for the flags the probe determined for SDL2? For example, on my system it contains these lines: ``` SDL2_TTF_CFLAGS:=-I/usr/include/SDL2 -D_REENTRANT -I/usr/include/freetype2 SDL2_TTF_LDFLAGS:=-lSDL2_ttf -L/usr/lib64 -lSDL2 ```
Manuel is running Debian testing, which is an in-development version that will eventually be the basis for the next release. So it's significantly newer than Debian 9. Does `pkg-config freetype2...
The error should have been logged in the `probe.log`. For example, if I deliberately break it by searching for `freetype3` instead, this is logged: ``` Error executing "pkg-config freetype3 --cflags"...
Ideally, we wouldn't need the FreeType compile flags at all, since FreeType is an implementation dependency of SDL2_ttf. But we do need the link flags when linking statically and the...
Normally I'd agree with you, but since it's likely the build system is going to be replaced soon, I don't really want to spend time on it now.