-
How to set the game in 2560x1024? [SOLVED]
Hello, everybody.
How can I play the game in 2560x1024?
I've a 17"x2 dual screen and I would like to play this so great game in wide 
I read here that we can modify manually the resolution, but I don't really understand what to change exactly in the appdata\local\Redlynx\Trials 2\1.0\setup.dat file.
If someone can give an exemple of how to modify it (a screenshot or even a copy/paste) it would be wonderfull.
If you want to see my setup.dat file, just ask 
Thank you beforehand guys !
-
Trials Developer
Copied from post I send to epZ.
Open up setup.dat with a hex editor:

The resolution width is on the hexes showing 20-03. And the height on the hexes showing 58-02.
To convert these to decimal numbers, use the windows calculator. Set the hex mode on, and type:
Type 0320 (first zero will not be visible) and press dec, you will see 800
Type 0258 (first zero will not be visible) and press dec, you will see 600
For resolution of 1400 x 100 you first convert those number to hex numbers:
1400 -> 578 (= 0578)
100 -> 64 (=0064)
Then type those numbers to the same positions as the 20-03 and 58-02 were before. Remember to write the 2 lowest numbers first and then the 2 highest. Like this: 78-05 and 64-00. And now you have 1400x100 resolution.
-
A great great thanx, it's the perfect explanation 
For me it was 2560x1024 so
2560 => 0A00
1024 => 0400
so in the hex file I had to put 00 0A and 00 04
(if someone else is interested ^^ )