Skip to content

Commit

Permalink
Fix compilation error with -DNOHQ
Browse files Browse the repository at this point in the history
  • Loading branch information
Morilli authored and gonetz committed Aug 4, 2024
1 parent cb06d7b commit 35d2f03
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/TxFilterStub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,24 @@ txfilter_checksum(uint8 *src, int width, int height, int size, int rowStride, ui
return 0U;
}

TAPI uint64 TAPIENTRY
txfilter_checksum_strong(uint8 *src, int width, int height, int size, int rowStride, uint8 *palette)
{
return 0U;
}

TAPI boolean TAPIENTRY
txfilter_dmptx(uint8 *src, int width, int height, int rowStridePixel, uint16 gfmt, N64FormatSize n64FmtSz, Checksum r_crc64)
{
return 0;
}

TAPI boolean TAPIENTRY
txfilter_dmptx_strong(uint8 *src, int width, int height, int rowStridePixel, uint16 gfmt, N64FormatSize n64FmtSz, Checksum r_crc64)
{
return 0;
}

TAPI boolean TAPIENTRY
txfilter_reloadhirestex()
{
Expand Down

0 comments on commit 35d2f03

Please sign in to comment.