15-06-2009, 08:20 PM
Here's what I have:
Does this look good? Seems to display right for me, but will it display right for everyone?
Code:
Private Sub BltRestIcon(ByVal Index As Long)
Dim rec As DXVBLib.RECT
Dim X2 As Long
Dim Y2 As Long
X2 = NewX + sx + 0
If GetPlayerGuild(Index) vbNullString Then
Y2 = NewY + sx - 42
Else
Y2 = NewY + sx - 30
End If
With rec
.Top = 0
.Bottom = 32
.Left = 0
.Right = 32
End With
Call DD_BackBuffer.BltFast(X2, Y2, DD_RestIcon, rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)
End SubDoes this look good? Seems to display right for me, but will it display right for everyone?
