distribution/packages/games/emulators/mupen64plussa/mupen64plussa-video-gliden64/patches/2706.patch
Nicholas Ricciuti 4cc6b641a8 proper patch
2022-09-26 11:55:41 -04:00

39 lines
1.3 KiB
Diff

From ec5dc67b5b542ea90e79cbbf4f463c32228bbef1 Mon Sep 17 00:00:00 2001
From: Nicholas Ricciuti <rishooty@gmail.com>
Date: Tue, 13 Sep 2022 18:55:52 -0400
Subject: updates methods in TxFilterStub.cpp to match the most up
to date TxFilterExport.h header
---
src/TxFilterStub.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/TxFilterStub.cpp b/src/TxFilterStub.cpp
index c649abaad..7d7ad5551 100644
--- a/src/TxFilterStub.cpp
+++ b/src/TxFilterStub.cpp
@@ -14,13 +14,13 @@ txfilter_shutdown(void)
TAPI boolean TAPIENTRY
txfilter_filter(uint8 *src, int srcwidth, int srcheight, uint16 srcformat,
- uint64 g64crc, GHQTexInfo *info)
+ uint64 g64crc, N64FormatSize n64FmtSz, GHQTexInfo *info)
{
return 0;
}
TAPI boolean TAPIENTRY
-txfilter_hirestex(uint64 g64crc, uint64 r_crc64, uint16 *palette, GHQTexInfo *info)
+txfilter_hirestex(uint64 g64crc, Checksum r_crc64, uint16 *palette, N64FormatSize n64FmtSz, GHQTexInfo *info)
{
return 0;
}
@@ -32,7 +32,7 @@ txfilter_checksum(uint8 *src, int width, int height, int size, int rowStride, ui
}
TAPI boolean TAPIENTRY
-txfilter_dmptx(uint8 *src, int width, int height, int rowStridePixel, uint16 gfmt, uint16 n64fmt, uint64 r_crc64)
+txfilter_dmptx(uint8 *src, int width, int height, int rowStridePixel, uint16 gfmt, N64FormatSize n64FmtSz, Checksum r_crc64)
{
return 0;
}