Skip to content

Commit

Permalink
More 3.4.1 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IrcDirk committed Jan 18, 2023
1 parent 40afab2 commit 66b3770
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Carbonite/NxMap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2131,12 +2131,12 @@ function Nx.Map:MinimapNodeGlowInit (reset)
local t = NXMinimapBlinkerFrame:CreateTexture (nil, "OVERLAY")
t:SetAllPoints()
t:SetTexture ("Interface\\AddOns\\Carbonite\\Gfx\\Map\\MMOIcons")
t:SetNonBlocking(true)
--t:SetNonBlocking(true)
--t:Hide()
local t = NXMinimapBlinkerFrame:CreateTexture (nil, "OVERLAY")
t:SetAllPoints()
t:SetTexture ("Interface\\AddOns\\Carbonite\\Gfx\\Map\\MMOIconsG")
t:SetNonBlocking(true)
--t:SetNonBlocking(true)
--t:Hide()
end
GlowLetter = ""
Expand Down Expand Up @@ -4948,7 +4948,7 @@ function Nx.Map:Update (elapsed)
f.texture:SetAtlas(atlasIcon)
else
f.texture:SetTexture ("Interface\\Minimap\\POIIcons")
txX1, txX2, txY1, txY2 = GetPOITextureCoords (txIndex)
txX1, txX2, txY1, txY2 = C_Minimap.GetPOITextureCoords (txIndex)
f.texture:SetTexCoord (txX1 + .003, txX2 - .003, txY1 + .003, txY2 - .003)
f.texture:SetVertexColor (1, 1, 1, 1)
end
Expand Down Expand Up @@ -5398,7 +5398,7 @@ function Nx.Map:DrawContinentsPOIs()
return
end

local getCoords = GetPOITextureCoords
local getCoords = C_Minimap.GetPOITextureCoords

for cont = 1, self.ContCnt do

Expand Down

0 comments on commit 66b3770

Please sign in to comment.