Quote:
Originally Posted by jackie_w
Apart from the hex-location the Custom Page Refresh patches for 4.2.8110 and 4.2.8432 look the same to me. If changing 12 to something higher worked before I don't see why it wouldn't work this time.
|
This is the previous patch
Code:
#
# The following two patches are alternatives, don't enable more than one.
#
# `Custom page refresh options (1,2,3,...,12)`
# `Custom page refresh options (1,2,4,8,16,32,64,128)`
#
# These two patches don't affect the Aura.
#
<Patch>
patch_name = `Custom page refresh options (1,2,3,...,12)`
patch_enable = `no`
# patch_group = `Page refresh alternatives`
#
## Allows the page refresh to be set in the range 1-12 pages,
## instead of just 1-6 pages. This patch doesn't affect the Aura.
#
# Replacement: Maximum value.
replace_int = 6ACF40, 6, 12
</Patch>
<Patch>
patch_name = `Custom page refresh options (1,2,4,8,16,32,64,128)`
patch_enable = `yes`
# patch_group = `Page refresh alternatives`
#
## Allows the page refresh to be set to 1,2,4,8,16,32,64, or 128 pages,
## instead of just 1-6 pages. This patch doesn't affect the Aura.
#
# Replacement: Base (use this value for the first menu option):
replace_int = 6ACE48, 1, 1
# Double to get each successive menu option:
replace_bytes = 6ACF72, 01 33, 5B 00
# Replacement: Maxmium (stop adding options when this value is exceeded):
replace_int = 6ACF40, 6, 128
</Patch>
and this is the new patch
Code:
<Patch>
patch_name = `Custom page refresh options (1,2,3,...,12)`
patch_enable = `yes`
#
## Allows the page refresh to be set in the range 1-12 pages,
## instead of just 1-6 pages. This patch doesn't affect the Aura.
#
# Replacement value:
replace_int = 6AB2E8, 6, 12
</Patch>
So what I want to know is it OK to change the 12 or can someone please find the second part of this patch?