View Full Version : buffer overrun
retardz
10-21-2007, 12:34 AM
i was playin fiesta and then out of no where i get an error c++ buffer overrun
what would cause this? and what can i do to prevent it?
elverion
10-21-2007, 04:11 AM
There is nothing you can do about it, really. A buffer overrun typically (but not always) occurs when one oversteps the bounds of an array. Seeing as they used C++, I'd expect better wrapping to prevent such things, but no program is bug free. In short, it's an error in the programming of the game, not on your end.
retardz
10-21-2007, 04:23 PM
There is nothing you can do about it, really. A buffer overrun typically (but not always) occurs when one oversteps the bounds of an array. Seeing as they used C++, I'd expect better wrapping to prevent such things, but no program is bug free. In short, it's an error in the programming of the game, not on your end.
ok, thanks :)