I was looking through the MaterialsAndLight sample. It runs fine on my machine, but when it tries to exit... it gives me an error:
SEHException was unhandled
External component has thrown an exception
| static void Main() |
| { |
| using (MaterialsAndLights game = new MaterialsAndLights()) |
| { |
| game.Run(); |
| ----> } //this is where the error occurs |
| } |
I found online that i happens when there is a SEH error thrown from unmanaged code. I didn't alter the code in any way. Has this happened to anyone else? What could be causing it? How do I fix it and/or handle catching this error?
CFresh