-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
When the mouse clicks on the imgui interface, an error message appears: Exception thrown: read access violation.**window** was nullptr. #687
Comments
It seems like you forgot to initialize one of your pointers. |
can someone tell me is this the Hazel Source? or is it Hazel 2D only? I'm so confused! |
It seems like Hazel2D |
I've had a similar issue where i had to remove the |
When I clicked the imgui interface with the mouse, an error occurred; it prompted me Exception thrown: read access violation.windowwas nullptr.; I checked the error stack and found that the ImGuiButtonFlags_NoNavFocus macro definition was executed and ClearActiveID was executed. looking through the call stack it happens because the ClearActiveID() function is called,which inturn calls the SetActiveID() with 0 and NULL as arguments ,i.e. SetActiveID(0, NULL),And this original error occured because in the function SetActiveID
The text was updated successfully, but these errors were encountered: