Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ID reported by helper is not the correct ID to use for scripting. #9

Open
jpnielsen opened this issue Oct 3, 2023 · 3 comments
Open

Comments

@jpnielsen
Copy link

@jpnielsen
Copy link
Author

jpnielsen commented Oct 3, 2023

got it working

$ diff LuneHelper.cpp LuneHelper.cpp.new
89c89
<                       sprintf(hexID, "0x%lx", hoveredModule);
---
>                       sprintf(hexID, "0x%llx", hoveredModule);
147c147
<                               moduleIdLabel->text = string::f("0x%lx", (int64_t)hoveredModule);
---
>                               moduleIdLabel->text = string::f("0x%llx", (int64_t)hoveredModule);
224c224

now shows the correct module ID

image

@Simon-L
Copy link
Owner

Simon-L commented Oct 9, 2023

I believe this is fixed in 4039314 thanks so much!

@jpnielsen
Copy link
Author

Thank you.

"Lune" and "Pleine Lune" also incorrectly show only the lower 32 bits of the ID in their right click menu.
I did not know how to fix this, and lunehelper was enough for me.

@jpnielsen jpnielsen reopened this Jan 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants