thunderbrew/src/gx/buffer/CGxPool.cpp
2023-01-02 13:17:18 -06:00

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;
}