Fix filename to be the same in read && write

This commit is contained in:
Stefan `Sec` Zehl 2011-07-30 15:30:35 +02:00
parent e8f06b2388
commit 1077b5fd1e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void openbeaconSave(uint32_t s)
BYTE buf[4];
UINT readbytes;
if( f_open(&file, "beacon", FA_OPEN_ALWAYS|FA_WRITE) )
if( f_open(&file, "beacon.cfg", FA_OPEN_ALWAYS|FA_WRITE) )
return;
uint32touint8p(s, buf);