1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

erpt.py: remove idaapi usage

This commit is contained in:
Michael Scire 2020-09-23 16:05:27 -07:00
parent f4d10a4481
commit feba788bc6

View file

@ -274,10 +274,10 @@ def get_full(nxo):
if s.name:
if s.type == STT_FUNC:
print(hex(s.resolved), s.name)
idaapi.add_entry(s.resolved, s.resolved, s.name, 0)
#idaapi.add_entry(s.resolved, s.resolved, s.name, 0)
else:
idaapi.force_name(s.resolved, s.name)
#idaapi.force_name(s.resolved, s.name)
pass
else:
# NULL symbol
s.resolved = 0