fix texconv build

This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis
2025-03-05 17:25:13 +02:00
parent 6e6d1689d7
commit 07012e5694

View File

@@ -41,8 +41,9 @@ struct CAnimBlendPlayer {
float predicted_tx = 0, predicted_ty = 0, predicted_tz = 0; float predicted_tx = 0, predicted_ty = 0, predicted_tz = 0;
float nextDeltaTime; float nextDeltaTime;
#if !defined(DC_TEXCONV)
static unsigned count; static unsigned count;
CAnimBlendPlayer() { CAnimBlendPlayer() {
count++; count++;
fprintf(stderr, "CAnimBlendPlayer count %d\n", count); fprintf(stderr, "CAnimBlendPlayer count %d\n", count);
@@ -50,6 +51,7 @@ struct CAnimBlendPlayer {
~CAnimBlendPlayer() { ~CAnimBlendPlayer() {
count--; count--;
} }
#endif
template <typename T> template <typename T>
T read() { T read() {