From d4336508a6712559d6aa5b3af997ddc9be333bbd Mon Sep 17 00:00:00 2001 From: yukani Date: Sun, 20 Aug 2023 16:44:29 +0300 Subject: [PATCH] fix --- source/game_sa/ClothesBuilder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/game_sa/ClothesBuilder.cpp b/source/game_sa/ClothesBuilder.cpp index 6da2bc23dd..bf5b9c1206 100644 --- a/source/game_sa/ClothesBuilder.cpp +++ b/source/game_sa/ClothesBuilder.cpp @@ -430,10 +430,10 @@ void CClothesBuilder::BlendTextures(RwTexture* dst, RwTexture* src1, RwTexture* AssertTextureLayouts({ dst, src1, src2, tattoos }); - const auto dstRaster = RwTextureGetRaster(dst); + const auto dstRaster = RwTextureGetRaster(dst); const auto src1Raster = RwTextureGetRaster(src1); const auto src2Raster = RwTextureGetRaster(src2); - const auto tatRaster = RwTextureGetRaster(src2); + const auto tatRaster = RwTextureGetRaster(tattoos); CTimer::Suspend();