|
|
@ -40,9 +40,7 @@ struct ReservedRange {
|
|
|
|
long get_new_texpos() {
|
|
|
|
long get_new_texpos() {
|
|
|
|
if (this->current == this->end)
|
|
|
|
if (this->current == this->end)
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
current = this->current;
|
|
|
|
return this->current++;
|
|
|
|
this->current++;
|
|
|
|
|
|
|
|
return current;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const int32_t size = 10000; // size of reserved texpos buffer
|
|
|
|
static const int32_t size = 10000; // size of reserved texpos buffer
|
|
|
|