X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=mupen64plus-pandora.git;a=blobdiff_plain;f=source%2Fgles2glide64%2Fsrc%2FGlideHQ%2FTxUtil.cpp;h=411a25efb15951be9932b98937a2d63710f86e66;hp=9ad7e448b01b58422bf35a40d64e3b0891f80199;hb=2d26287291331f2b1793a8e76ede08c75654fb7c;hpb=01d8ca6fb06a8261602900cab63c61e5a1b143c9 diff --git a/source/gles2glide64/src/GlideHQ/TxUtil.cpp b/source/gles2glide64/src/GlideHQ/TxUtil.cpp index 9ad7e44..411a25e 100644 --- a/source/gles2glide64/src/GlideHQ/TxUtil.cpp +++ b/source/gles2glide64/src/GlideHQ/TxUtil.cpp @@ -42,14 +42,14 @@ TxLoadLib::TxLoadLib() _dxtnlib = LoadLibrary("dxtn"); if (_dxtnlib) { - if (!_tx_compress_dxtn) - _tx_compress_dxtn = (dxtCompressTexFuncExt)DLSYM(_dxtnlib, "tx_compress_dxtn"); + if (!_tx_compress_dxtn_rgba) + _tx_compress_dxtn_rgba = (dxtCompressTexFuncExt)DLSYM(_dxtnlib, "tx_compress_dxtn_rgba"); if (!_tx_compress_fxt1) _tx_compress_fxt1 = (fxtCompressTexFuncExt)DLSYM(_dxtnlib, "fxt1_encode"); } #else - _tx_compress_dxtn = tx_compress_dxtn; + _tx_compress_dxtn_rgba = tx_compress_dxtn_rgba; _tx_compress_fxt1 = fxt1_encode; #endif @@ -74,7 +74,7 @@ TxLoadLib::getfxtCompressTexFuncExt() dxtCompressTexFuncExt TxLoadLib::getdxtCompressTexFuncExt() { - return _tx_compress_dxtn; + return _tx_compress_dxtn_rgba; }