mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-11 18:30:34 +00:00
first part of CFileLoader
This commit is contained in:
parent
fcc6a8bc55
commit
b5fba778c4
41 changed files with 1182 additions and 45 deletions
|
@ -8,8 +8,10 @@ public:
|
|||
T store[n];
|
||||
|
||||
T *alloc(void){
|
||||
if(this->allocPtr >= n)
|
||||
if(this->allocPtr >= n){
|
||||
printf("Size of this thing:%d needs increasing\n", n);
|
||||
assert(0);
|
||||
}
|
||||
return &this->store[this->allocPtr++];
|
||||
}
|
||||
void clear(void){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue