Hugh O'Brien
Hugh O'Brien
Howdy, I'm the nixpkgs maintainer. I'm using sway so also have `SDL_VIDEODRIVER=wayland` but haven't experienced this issue. Perhaps you can help me find where our systems differ. 1. What graphics...
> Just out of curiosity - why is the latter a consequence of the former? You're right I was setting this manually in my session and forgot about it. ---...
``` #-device virtio-vga-gl,xres=1280,yres=960 -device qxl-vga,xres=1280,yres=960 ``` If you disable virgl (3d accel) on the guest then the colours are correct
Another fun discovery, if you break the games's full screen lock right as it starts, e.g. by hitting the super key to bring up the KDE 'start menu' then the...
Yes that seems to prevent the issue. Here's another way to try, add `xorg.xeyes` to your system package list. It seems to stop the game (which is running under xwayland,...
Do the xeyes eyes move when you mouse around the fallout game? They do for me. Trick stolen from https://wiki.archlinux.org/title/Wayland#Detect_Xwayland_applications_visually
 I don't recall when I noticed the behaviour but it might well have been my error. I'll keep an eye out (forgive the pun).
Agreed in principle, but that would likely be a refactor more than a bug fix. e.g. this pattern is used elsewhere in the file: https://github.com/alexbatalov/fallout1-ce/blob/ad8a2754fa99ceaf40495185ad48191cf27559e2/src/game/worldmap.cc#L1145
@alexbatalov May I ask if this is a change you would consider merging or if you would prefer an alternative approach? Thank you for your work.
Have a wrapper script do the `cd` and then exec. You can see below the subprocess starts in the new directory. ``` #!/usr/bin/env bash d=$(mktemp -d) cd $d exec sh...