#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 , 18 years ago
comment:2 by , 18 years ago
Owner: | set to |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Summary: | stack corruption → FF: Stack corruption |
Note:
See TracTickets
for help on using tickets.
Thanks, I added the change to ScummVM SVN.