mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
13 lines
211 B
C++
13 lines
211 B
C++
|
|
#include "gx/font/FaceData.hpp"
|
||
|
|
#include "util/SFile.hpp"
|
||
|
|
|
||
|
|
FACEDATA::~FACEDATA() {
|
||
|
|
if (this->face) {
|
||
|
|
FT_Done_Face(this->face);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (this->data) {
|
||
|
|
SFile::Unload(this->data);
|
||
|
|
}
|
||
|
|
}
|