mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-11-02 09:16:03 +03:00
10 lines
206 B
C++
10 lines
206 B
C++
#include "gx/buffer/CGxPool.hpp"
|
|
|
|
void CGxPool::Discard() {
|
|
for (auto buf = this->m_bufList.Head(); buf; buf = this->m_bufList.Link(buf)->Next()) {
|
|
buf->unk1C = 0;
|
|
}
|
|
|
|
this->unk1C = 0;
|
|
}
|