(no title)
Grom_PE | 4 months ago
As someone who enjoys older games, I am pleasantly surprised that Wine (with dxvk and cnc-ddraw) lets me run more games in a better way than I was able to on Windows.
I can run some 16-bit games on a 64-bit OS!
Games that rudely switch to fullscreen, I can run in Wine Virtual Desktop. Previously on Windows, I had to configure hacks like DxWnd and it didn't always work.
I only wish Wine also allowed me to zoom 2x or 3x, but this is where Gamescope comes in:
gamescope -S integer -F nearest --borderless wine game.exe
Also there is a potential to use a different Wine configuration (prefix) for every game specifically. So far I haven't had to resort to this.I noticed some Unity games waste disk space with gigabytes of zeroes, Linux lets me run them from inside a compressed SquashFS image, this even makes the game load faster:
mkdir ./game
squashfuse ./game.squashfs ./game
pushd ./game
wine game.exe
popd
sleep 1
umount ./game
rmdir ./game
I encountered a game that crashes due to multiprocessor system, the fix is simple, restricting it to one CPU: taskset --cpu-list 1 wine game.exe
raron|4 months ago
Maybe Wine could be ported to Windows :-)
usrusr|4 months ago
bigyabai|4 months ago
mkl|4 months ago
caminanteblanco|4 months ago
unparagoned|4 months ago
throwaway2046|4 months ago
Also possible using dxwrapper (for DirectX 7-9 games):
https://github.com/elishacloud/dxwrapper
Similarly to dxvk, you drop a few DLLs into the game directory then edit one config file. No need to use a dedicated program.
riizade|4 months ago
How did you discover that? Is it intentional on Unity's part? Percentage-wise, are we talking 2% of a 100GB game, or 50% of a 4GB game?
I can't find anything about it online.
Grom_PE|4 months ago
I like to look inside game files and a .zip archive of 1GB unpacking to ~10GB game made me suspicious.
jayd16|4 months ago
I suppose this might be asset padding or perhaps these are raw textures with full alpha sections? Still, it seems pretty strange. What game, what asset?
[1] https://stackoverflow.com/questions/42478186/app-size-on-app...
apatheticonion|4 months ago
jeffbee|4 months ago
unknown|4 months ago
[deleted]
Dwedit|4 months ago