Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#2725 closed defect (fixed)

FF: Stack corruption

Reported by: athrxx Owned by: Kirben
Priority: normal Component: Engine: AGOS
Version: Keywords:
Cc: Game: The Feeble Files

Description

Feeble Files alway crashed ("stack corruption around variable 'palette' ") until I changed line 273 in simon\animation.cpp from

for (int i = 0; i <= 256; i++) {

to

for (int i = 0; i < 256; i++) {

Hope this helps. Keep up the great work !!!

Ticket imported from: #1519327. Ticket imported from: bugs/2725.

Change History (2)

comment:1 by Kirben, 18 years ago

Thanks, I added the change to ScummVM SVN.

comment:2 by Kirben, 18 years ago

Owner: set to Kirben
Resolution: fixed
Status: newclosed
Summary: stack corruptionFF: Stack corruption
Note: See TracTickets for help on using tickets.