Skip to content

Commit 652f193

Browse files
committed
Fix output from -showdrops debug option
1 parent 8e9b5aa commit 652f193

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

trunk/clsBNCSRecvBuffer.cls

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ Public Function FullPacket() As Boolean
9090
frmChat.AddChat RTBColors.ErrorMessageText, "The following data is being purged:"
9191

9292
If L > 0 Then
93-
frmChat.AddChat Space$(1) & DebugOutput(Mid$(strData, 1, L - 1))
93+
frmChat.AddChat RTBColors.ErrorMessageText, Space$(1) & DebugOutput(Mid$(strData, 1, L - 1))
9494
Else
95-
frmChat.AddChat Space$(1) & DebugOutput(strData)
95+
frmChat.AddChat RTBColors.ErrorMessageText, Space$(1) & DebugOutput(strData)
9696
End If
9797
End If
9898

0 commit comments

Comments
 (0)