I'm having a huge problem using the OpenGL renderer with Irrlicht and it's driving me insane, I'd appreciate any help with it.
So I'm working on a very basic game engine for my university coursework and I'm using Irrlicht for the graphics part. I've set up a basic scene with a few models and some simple movement and it's mostly working fine. I wanted to add some GUI elements so at the suggestion of someone who did this module before me, I've implemented IrrIMGUI: https://github.com/ZahlGraf/IrrIMGUI
Problem is that it only seems to work with the OpenGL renderer. I was using EDT_BURNINGSVIDEO software renderer so I switched it out for OpenGL and now everything is broken. As soon as I start the scene, I get this error:

This is very vague and I spent several hours just trying to figure out what the problem is. I figured I'd set up something wrong in Irrlicht and there might be extra steps for OpenGL or something because it was working so well before I changed the renderer. But it turns out the problem is actually this:

As part of this module, we're required to implement certain features such as splitting graphics, physics etc into subsystems and utilising an event queue. The above is part of my Graphics Subsystem's HandleEvent() function and allows the player to look around using the mouse. I noticed it didn't crash as long as I didn't move my mouse into the game window. If I comment out "delete event;", my program runs fine without any issues apart from obviously not functioning correctly as I'm not deleting events. I don't get the invalid address error.
I have no clue why deleting my events was fine with the software renderer but it freaks out when I do it with the OpenGL renderer. It also crashes when I try to spawn in any new models after initialization. I have implemented code to spawn a projectile when left mouse is clicked also. Again, this was working fine with the software renderer and now crashes with "Access violation reading location" with the OpenGL renderer. I haven't changed anything about my code to add a model to the scene and adding models works fine during initialization. I'd greatly appreciate any explanation for why this happens and any solutions I can implement to resolve it because I'm not sure how to handle events in my queue otherwise.