Quote:
Originally Posted by Kodename47
What you have to understand is it's just how the definitions work, there is no difference in the data in the ROM. Look at the expression and to_byte information. On the temperature data it's just "x" for Celsius, for Fahrenheit it's "(x*1.8)+32". When you input into Romraider it uses the definition to change the data to the correct hexadecimal expression.
|
By my count, it needs to be changed 183 times. Wow. Can I use "replace all"? It looks like I need to replace all ("Degrees F" expression="(x*1.8)+32" to_byte="(x-32)/1.8") with ("Degrees C" expression="x" to_byte="x").