Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "Programming"

From PCGamingWiki, the wiki about fixing PC games
(simpler Calc launching step)
Line 32: Line 32:
 
# Open the Start menu, type <code>Calc</code>, then press {{key|Enter}}.
 
# Open the Start menu, type <code>Calc</code>, then press {{key|Enter}}.
 
# Click on the button with the three lines on it, then switch to the '''Programmer''' mode.
 
# Click on the button with the three lines on it, then switch to the '''Programmer''' mode.
# Click on '''DEC''' and type the desired '''Width''' then write down the value written next to '''HEX'''.
+
# Click on '''DEC''', type the desired '''Width''', then write down the value written next to '''HEX'''.
# Click on '''DEC''' and type the desired '''Height''' then write down the value written next to '''HEX'''.
+
# Click on '''DEC''', type the desired '''Height''', then write down the value written next to '''HEX'''.
 +
}}
  
'''Conversion'''
+
===Step Two===
{{ii}} Replace '''ABC''' (3 Digits HEX) or '''ABCD''' (4 Digits HEX) with the converted '''Width''' or '''Height''' values.
+
{{ii}} If '''HEX''' has three numbers, use the '''ABC''' (123) format.
* For '''HEX''' values with three digits use ''0x''A'''BC''' and change them to '''BC''' ''0x''A to '''BC''' ''0''A.
+
{{Fixbox|1=
* For '''HEX''' values with four digits use '''AB''' CD and change them to CD '''AB'''. 
+
{{Fixbox/fix|Three Numbers|}}
 +
# Add 0 in front of the HEX value, such as 0'''ABC'''.
 +
# Put '''BC''' at the beginning, such as '''BC''' 0A.
 +
}}
  
'''Notes'''
+
{{ii}} If '''HEX''' has four numbers, use the '''ABCD''' (1234) format.
{{ii}} The '''0x''' can be used a guideline in order to see where a 0 needs to be added before the A value.
+
{{Fixbox|1=
{{ii}} The '''ABC''' and '''ABCD''' formats show how the values from the '''HEX''' field look like when written, such as ''0x''4'''80''' to '''80''' ''0x''4 to '''80''' ''0''4.
+
{{Fixbox/fix|Four Numbers|}}
 +
* For '''AB''' CD, move CD at the beginning, such as CD '''AB'''.
 
}}
 
}}
<!-- Confusing looking.
 
{{Fixbox|1=
 
{{Fixbox/fix|Examples}}
 
* Converting 1 (DEC) to 1 (1 Digit HEX) written as ''0x''00'''1''' to '''01''' ''0''0.
 
* Converting 16 (DEC) to 10 (2 Digits HEX) written as ''0x''0'''10''' to '''10''' ''0''0.
 
* Converting 256 (DEC) to 100 (3 Digits HEX) written as ''0x''1'''00''' to '''00''' ''0''1.
 
* Converting 4096 (DEC) to 1000 (4 Digits HEX) written as ''0x''10'''00'''  to '''00''' 10.
 
}}-->
 
  
 
===Step Two===
 
===Step Two===

Revision as of 08:59, 8 February 2017

This page is a stub: it lacks content and/or basic article components. You can help to expand this page by adding an image or additional information.

Hex Editing Resolutions (Windows)

Step One

Instructions

Step Two

If HEX has three numbers, use the ABC (123) format.
Instructions
If HEX has four numbers, use the ABCD (1234) format.
Instructions

Step Two

Instructions