Game Crashing on Startup

b0bthen00b

Member
Guildcard
42093779
Hi,
I can't seem to get the application to start. I've reduced all settings to basically nothing and tried all the different resolutions I could. I've gone through and installed everything No error logging. Windows event log below:

Faulting application name: psobb.exe, version: 0.0.0.0, time stamp: 0x00000000
Faulting module name: psobb.exe, version: 0.0.0.0, time stamp: 0x00000000
Exception code: 0xc0000095
Fault offset: 0x00442405
Faulting process id: 0x5598
Faulting application start time: 0x01dae45ec66516e3
Faulting application path: C:\Users\Bob\EphineaPSO\psobb.exe
Faulting module path: C:\Users\Bob\EphineaPSO\psobb.exe
Report Id: 194ca89b-59fc-42a6-832f-0d8320b8767c
Faulting package full name:
Faulting package-relative application ID:

I've gone through the readme as well. I have about a dozen versions of dot net installed including pretty much every version of .net 4, .net 8 and others, C++ 2015 - 2022 redistributor, and have done all the whitelisting possible.

Any ideas?
 
Never seen this before. That's an integer overflow exception occurring on an IDIV instruction. This is happening when the game is doing some math to update the state of connected dinput8 devices. So I think you might have some USB device connected that's giving bogus readings to the game, or maybe you have a virtual controller/joystick because I know players have had other issues with those in the past.

Probably a good idea to see what happens if you unplug all USB devices except mouse and keyboard, and also disable or turn off any virtual controller/joysticks. This includes any wireless adapters that may be connected to your PC that aren't explicitly for mouse/keyboard.

If you still crash, not sure.
 
That was exactly the problem. I have a space mouse for doing 3D work. I didn't think of checking that. I've had issues with steam games in the past because of it. Thanks!
 
Back
Top