Skip to content

Commit e0ea99b

Browse files
authored
Fixed angle brackets.
1 parent 4ebf0d4 commit e0ea99b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ Just download the [latest version](https://github.com/KN4CK3R/ReClass.NET/releas
5252
- The node window can be controlled with the keyboard too. Arrow keys can select other keys, combined with the shift key the nodes get selected. The menu key opens the context menu which itself can be controlled with the keyboard.
5353
- The memory address field of a class can contain a real formula not just a fixed address.
5454

55-
**<Program.exe> + 0x123** will use the base address of Program.exe and add 0x123 to it.
55+
**\<Program.exe> + 0x123** will use the base address of Program.exe and add 0x123 to it.
5656
**[0x4012ABDE]** will read the integer (4 byte on x86 / 8 byte on x64) from the address 0x4012ABDE and use this value as class address.
57-
**[<Program.exe> + 0xDE] - AB** will calculate the base address of Program.exe, add 0xDE to it, read the value from this address and finally sub 0xAB from it.
57+
**[\<Program.exe> + 0xDE] - AB** will use the base address of Program.exe, add 0xDE to it, read the value from this address and finally sub 0xAB from it.
5858

5959
Valid operations are read ([..]), add (+), sub (-), mul (*) and div (/). Please note that all operations are integer calculations.
6060

0 commit comments

Comments
 (0)