Widescreen Gaming Forum

[-noun] Web community dedicated to ensuring PC games run properly on your tablet, netbook, personal computer, HDTV and multi-monitor gaming rig.
It is currently 09 Nov 2024, 22:48

All times are UTC [ DST ]




Post new topic Reply to topic  [ 6 posts ] 
Author Message
PostPosted: 01 Oct 2005, 19:33 
Offline
Founder
Founder
User avatar

Joined: 13 Oct 2003, 05:00
Posts: 7358
Found a solution!

I was reading the NBA Live thread (http://www.widescreengamingforum.com/node/5807 I assumed Tiger Woods would use a similar technique since it's also an EA Sports game. I was right :)

First back up DXWrap.dll. Open DXWrap.dll from the bin folder of your game installation in a hex editor, search for this: (the actually changed parts are bolded, the rest is just to make sure you've got the right area)

02 00 05 00 00 C7 00 00 04 00 00 C3 8B 4C 24 08 8B
and overwrite it with this:
02 90 06 00 00 C7 00 1A 04 00 00 C3 8B 4C 24 08 8B

This will change 1280x1024 to 1680x1050. The other resolutions appear to be in the same area, so if you want to change something else you should be able to figure it out using the NBA Live thread.

If you don't want to mess around with a hex editor here's the modified DXWrap file, just put this in the bin folder and select 1280x1024 from the options menu.

see:




Top
 Profile  
 


PostPosted: 21 Oct 2005, 09:16 
Offline

Joined: 01 Oct 2005, 05:34
Posts: 12
Nice work dude.. but for those of us who didn't have a classical education.. what is the hex code changes for 1920x1200 ?

1000


Top
 Profile  
 
PostPosted: 21 Oct 2005, 11:44 
Offline
Editors
Editors
User avatar

Joined: 14 Oct 2003, 13:52
Posts: 5706
In Little Endian Hexadecimal, 1920 is 8007, and 1200 is B004. :)


Top
 Profile  
 
PostPosted: 29 Oct 2005, 22:39 
Offline

Joined: 29 Oct 2005, 22:30
Posts: 1
I've been trying to get this to work....but can't :(

When I run TW2006 I don't have the option of a 1280x1024 res so the modified dxwrap file doesn't do anything. I ran through a hex editor and changed the 1024x768 res to 98 06 and cc 03...it's 1688x972. Still not working.

Anyone have any suggestions?!?! :cry:


Top
 Profile  
 
PostPosted: 15 Jan 2006, 17:39 
Offline
Editors
Editors
User avatar

Joined: 27 Jul 2004, 17:42
Posts: 3436
Some extra info ...
I found that using the uniWS patcher ( remember to put the patches.ini file in the uniWS folder), while using the 2K4 Custom resolutions option works for me.
Find the DXWrap.dll file in the BIN folder, select width and height you want ( I used 1168x656 for my 57" WS CRT HDTV, which is in 720P timing mode), and patch.
I use the 800X600 option ( in game), and it gives me 1168x656, I know thats what it is giving me because I found out exactly what size I wanted ( in 720P mode) using the resolution box in powerstrip.

I WILL say that I tried the modified DXWrap.dll file that is in the other TW2k6 thread first, but it didn't work for me...
I LEFT the modified DWWrap.dll in the Bin folder when using the uniws patcher, so I don't know if you have to use the modified DXwrap first or not.
I wouldn't think so, but if it doesn't work with the games original DXWrap.dll file, then use the modified one.

REMEMBER to copy the original DXWrap.dll file before doing any of this(I put the copy on another drive), in casrer you run into issues.

This worked NP for me.

HTH

gp


Top
 Profile  
 
PostPosted: 17 Jun 2008, 05:36 
Offline

Joined: 17 Jun 2008, 04:25
Posts: 2
After using various threads from this forum, I finally figured out how to hack my TW PGA 06 to allow my preferred WS resolution. I thought I'd share what I learned so others could do this themselves as the previous solutions were a little too vague. My main issue was I didn't have the resolution available in game to choose from that the other fix mentions to hack. My next issue was I had no clue how to get the hex codes for the resolution I wanted to use. To save you the same frustration, I'll join the forum and share. :D

I'm using a 37" HDTV as my monitor with a native res of 1360x768. TW06 only gave me the options to use 1024x768 or 800x600 in the game menu. I chose to hack the 800x600 setting.

Anyways....

to hack the 800x600 setting
--Go to bin folder of your TW06 Installation
--Back up DXWrap.dll (copy it, zip it, etc)
--Open DXWrap.dll with a hex editor
--In hex editor, go to line 8346 (00020990 on left column)
--and look for this string:
C7 01 20 03 00 00 C7 02 58 02

C7 01 20 03 00 00 C7 02 58 02
#s for (Width) .....x...... (Height)

...and change it to the hex codes for your preferred resolution...

1280x800
C7 01 00 05 00 00 C7 02 20 03

1360x768
C7 01 50 05 00 00 C7 02 00 03

1440x900
C7 01 A0 05 00 00 C7 02 84 03

1680x1050
C7 01 90 06 00 00 C7 02 1A 04

1920x1200
C7 01 80 07 00 00 C7 02 B0 04

2560x1600
C7 01 00 0A 00 00 C7 02 40 06

--Then save the file.
--Enter the game and select the 800x600 resolution.
(Note- the menus may not be affected, but the game play will now be widescreen)

I can't guarantee anything but the 1360x768 resolutions work, but they should. :wink:



To determine Hex codes for other #'s/resolutions:
open the windows calculator (Start-->All Programs-->Accessories)
click the "view" tab, and select Scientific mode
Make sure "Dec" is checked/ticked in upper left
Input your resolution number (ex: 768)
Now tick the "Hex" in upper left
look at the resulting # and use example below to determine the hex code

Example:
768 = 300
but we want 4 digits...
since it's only 3 digits, put a 0 in front of the 3
760 = 0300
ok, almost there, now...
switch the first pair (0300) of the 4 digits with the last pair (0300)
so now it reads 0003
add a space in between the pairs
0003 = 00 03
so the hex code for 768 = 00 03
got it?
(sometimes it will be letters, but do the same thing)

Hope it works for you too! Feel free to correct any misinformation, I was clueless 'til today.
:P

_________


full size:



Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 13 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  




Powered by phpBB® Forum Software © phpBB Group