
Pages:<< prev 1 next >>


Off the Edge of the Map

GroupAdministrators
Posts1,199
JoinedMar 21, 2006
Bug: Case statement missing a break in fread_deity.
Danger: Minor - Missing break could cause issues somewhere.
Found by: Tonitrus
Fixed by: Kayle
---
deity.c, fread_deity
Locate:
Replace with:
It hasn't caused any issues yet, but who knows. Better to have it fixed then have issues with it later.
Danger: Minor - Missing break could cause issues somewhere.
Found by: Tonitrus
Fixed by: Kayle
---
deity.c, fread_deity
Locate:
case 'O': KEY( "Objstat", deity->objstat, fread_number( fp ) );
Replace with:
case 'O': KEY( "Objstat", deity->objstat, fread_number( fp ) ); break;
It hasn't caused any issues yet, but who knows. Better to have it fixed then have issues with it later.
Pages:<< prev 1 next >>