Skip to content

Commit bf689fd

Browse files
authored
Fix typo in CHudSA (#3966)
Replace
1 parent af369be commit bf689fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Client/game_sa/CHudSA.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ void __fastcall CHudSA::RenderWeaponIcon_Sprite(void* sprite, void*, CRect* rect
837837
color->a = properties.fillColorSecondary.a;
838838

839839
// Call CSprite2d::Draw
840-
((void(__thiscall*)(void*, CRect*, RwColor*))FUNC_CSprie2d_Draw)(sprite, rect, color);
840+
((void(__thiscall*)(void*, CRect*, RwColor*))FUNC_CSprite2d_Draw)(sprite, rect, color);
841841
}
842842

843843
void CHudSA::RenderWeaponIcon_XLU(CVector pos, CVector2D halfSize, std::uint8_t r, std::uint8_t g, std::uint8_t b, std::uint16_t intensity, float rhw, std::uint8_t a, std::uint8_t uDir, std::uint8_t vDir)

Client/game_sa/CHudSA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
#define FUNC_CStats_GetFatAndMuscleModifier 0x559AF0
4848
#define FUNC_CSprite2d_DrawBarChart 0x728640
49-
#define FUNC_CSprie2d_Draw 0x728350
49+
#define FUNC_CSprite2d_Draw 0x728350
5050
#define FUNC_CSprite_RenderOneXLUSprite 0x70D000
5151

5252
#define CODE_ShowMoney 0x58F47D

0 commit comments

Comments
 (0)