I'm trying to run the Phantasia4 source:
http://www.phantasia4.com/download.html (down)
Can be played here: http://www.phantasia4.org
It compiled fine, but when I try to run it, it crashes. Under gdb, it seems to crash in /lib/libc.so.6 in the function initstate_r() which is not part of the source. Anyone know why it's crashing?
In the source, this is the line that calls initstate_r:
http://www.phantasia4.com/download.html (down)
Can be played here: http://www.phantasia4.org
It compiled fine, but when I try to run it, it crashes. Under gdb, it seems to crash in /lib/libc.so.6 in the function initstate_r() which is not part of the source. Anyone know why it's crashing?
In the source, this is the line that calls initstate_r:
/* seed the random number generator */
initstate_r (time(NULL), (char *)&randomStateBuffer, STATELEN,
(struct random_data *)&randData);