Skip to content

Commit 8a93a12

Browse files
committed
rename modify to hexedit in OBCEditor
1 parent 1764b19 commit 8a93a12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/OBCEditor/OBCEditor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main():
8888
print(f"Script size: {len(content)} bytes")
8989

9090
while True:
91-
print("\nEnter 'modify' to display/edit the OBC Script.")
91+
print("\nEnter 'hexedit' to display/edit the OBC Script.")
9292
print("Enter 'replace' to replace printable text.")
9393
print("Enter 'count' to count occurrences of a word.")
9494
print("Enter 'strings' to display strings in the OBC Script.")
@@ -107,7 +107,7 @@ def main():
107107
print("- Make sure you use version 1.3.0.0 (1.30, 1.30a 1.30b) of DEV7/Loader7 otherwise DEV7 won't able to use the Script and skip it.")
108108

109109
break
110-
elif choice == 'modify':
110+
elif choice == 'hexedit':
111111
display_content(content)
112112
try:
113113
offset = int(input("Enter offset to modify (in hexadecimal), or press Enter to continue viewing: "), 16)

0 commit comments

Comments
 (0)