FontCache: Be explicit about athena's SeekOrigin type

Allows this code to still function properly if the enum is turned into
an enum class.
This commit is contained in:
Lioncash 2019-09-08 16:38:25 -04:00
parent 6af485d949
commit dbb44d20b9
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ void FontAtlas::buildKernTable(FT_Face face) {
TT_KernHead kernHead; TT_KernHead kernHead;
kernHead.read(r); kernHead.read(r);
if (kernHead.coverage >> 8 != 0) { if (kernHead.coverage >> 8 != 0) {
r.seek(kernHead.length - 6, athena::Current); r.seek(kernHead.length - 6, athena::SeekOrigin::Current);
continue; continue;
} }
@ -199,7 +199,7 @@ static void WriteCompressed(athena::io::FileWriter& writer, const atUint8* data,
writer.writeUBytes(compBuf, ZLIB_BUF_SZ - z.avail_out); writer.writeUBytes(compBuf, ZLIB_BUF_SZ - z.avail_out);
} }
writer.seek(adlerPos, athena::Begin); writer.seek(adlerPos, athena::SeekOrigin::Begin);
writer.writeUint32Big(z.adler); writer.writeUint32Big(z.adler);
deflateEnd(&z); deflateEnd(&z);