SeedDB: replace seek(tell, set) with seek(cur) (#4344)
This commit is contained in:
parent
c5b7018625
commit
fa0e82b812
|
@ -34,7 +34,7 @@ bool SeedDB::Load() {
|
|||
LOG_ERROR(Service_FS, "Failed to read seed database count fully");
|
||||
return false;
|
||||
}
|
||||
if (!file.Seek(file.Tell() + SEEDDB_PADDING_BYTES, SEEK_SET)) {
|
||||
if (!file.Seek(SEEDDB_PADDING_BYTES, SEEK_CUR)) {
|
||||
LOG_ERROR(Service_FS, "Failed to skip seed database padding");
|
||||
return false;
|
||||
}
|
||||
|
|
Reference in New Issue