Language…
7 users online: DashGamer, DixyNL, ezdeez85, MegaSonic1999,  Nanako,  Segment1Zone2, toady - Guests: 242 - Bots: 368
Users: 64,795 (2,375 active)
Latest user: mathew

SRAM Plus problems

I inserted SRAM Plus to use the Death Counter from Dram 2, using this format

sram_table: dl $7F9D00 : dw $008D
.end

sram_defaults: db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00,$00,$00,$00,$00,$00,$00
db $00,$00

But doing so makes save files not able to actually save. Does anybody know what to do?
Expect little to nothing from me for now.

Player graphics are the only thing I do right, so come tell me to make one you want.

Go to my profile for more trash of mine.
Looks like you overwrote the first SRAM table entry instead of adding a new one. IIRC you need 5 bytes of freeram which are at 7F9D00, so the first part should be
Code
sram_table: dl $7E1EA2 : dw $008D
            dl $7F9D00 : dw $0005
.end

(if i don't remember correctly and you need a different number of bytes saved just change the dw $0005 to whatever you need)