Comment 7 for bug 966839

Revision history for this message
Mohamed Yousof (muhamed-yousof) wrote :

I found solution for Need for speed most wanted
it depends on making your screen resolution same as the game one in its options, for example if you made NFS resolution to be 1024 x 768 you have to set your screen resolution to 1024 x 768 before running the game
and to make the process easy and handy I made a .sh file do it all, it adjusts screen to 1024 x 768 and runs the game with wine and wait for game to close and once it closed the batch returned the screen resolution to my default one 1366 x 768 and it worked as a charm, here under bash file code
========================================================
#!/bin/bash
xrandr -s 1024x768
wine full path/speed.exe (full path is your game's path)
wait
xrandr -s 1366x768
========================================================
don't forget to make the bash file executable with the command " chmod +x file.sh "

hope it helps
enjoy