Fix bug with native rendering
This commit is contained in:
parent
226d99eb15
commit
41f65a1e5c
2 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ uint32 CodedInputStream::ReadTagFallback() {
|
|||
|
||||
// Osmand change ::
|
||||
int CodedInputStream::getTotalBytesRead() {
|
||||
return total_bytes_read_ - (buffer_end_ - buffer_);
|
||||
return total_bytes_read_ - (BufferSize() + buffer_size_after_limit_);
|
||||
}
|
||||
|
||||
bool CodedInputStream::ReadVarint64Slow(uint64* value) {
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue