Allowed to not draw big picture

This commit is contained in:
Tnze
2021-03-14 13:36:22 +08:00
parent 91e7ffa464
commit 0acecb936d
2 changed files with 34 additions and 15 deletions

View File

@ -102,7 +102,7 @@ func (r *Region) Close() error {
return r.f.Close()
}
func sectorLoc(offset int32) (o, s int32) {
func sectorLoc(offset int32) (sec, num int32) {
return offset >> 8, offset & 0xFF
}