Would: Mechwarrior 3 download windows 10
Microsoft office book download pdf bangla | Fallout nv mod organizer download failed |
Skype old version 3.8 free download | Can not download file as archive |
Sondra ray the only diet there is free download | Free games download website names with shadow in it |
beatcracker wrote:Is there any way to go beyond 1600x1200? Would be nice to run it at any arbitarty resolution.
I couldn't get any of the resolution bigger than 1600x1200 that I tried to work but that doesn't mean there aren't any.
In case anyone wants to give it a try here's a howto:
You need Ollydebug
http://www.ollydbg.de/version2.html
and the Windows Calculator.
Launch Ollydbg and open Mech3.exe
Click on View->Executable Modules and select Mech3.exe (it should be right at the top)
Select the "CPU -Main thread" Window and scroll to the top
Rightclick in the Window and use
Search for->Command to find mov ecx, 640h
If you scroll up a little bit should see this
That's a list of all resolutions currently available in the game
Case 8 for instance shows 1152x864 in hex form
360 (hex) = 864 (decimal)
480 (hex) = 1152 (decimal)
Each resolution is listed 3 times
You can easily convert decimal and hex values with your Windows Calculator. Press Alt+3 to switch to programmer view, with "Dec" at the left selected enter a decimal value and click on "Hex" to convert to hex.
For example if you want to replace 1152x864 with 1440x900 first convert 1440 and 900 to hex form.
900 = 384 (hex)
1440 = 5A0 (hex)
Then rightclick on MOV EDX,360 ->Assemble to replace it with MOV EDX,384
and then replace
MOV ECX,480 with MOV ECX,5A0
You have to do this 3 times each.
After that do a search for MOV EAX,480 and MOV EAX,360 to replace those as well.
To finalize the changes do another rightclick and select Edit->Copy all modifications to executable.
A new window will open. Rightclick on it and choose Save File... .
-
-