From 569dc4f7ea9cddba75066248005d79a30141d088 Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sat, 29 May 2021 01:25:12 -0400 Subject: [PATCH] chore(bubbles): remove useless unsafe --- XivCommon/Functions/ChatBubbles.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XivCommon/Functions/ChatBubbles.cs b/XivCommon/Functions/ChatBubbles.cs index 3b5f914..78c7956 100755 --- a/XivCommon/Functions/ChatBubbles.cs +++ b/XivCommon/Functions/ChatBubbles.cs @@ -122,7 +122,7 @@ namespace XivCommon.Functions { } } - private unsafe void UpdateChatBubbleDetourInner(IntPtr bubblePtr, IntPtr actorPtr) { + private void UpdateChatBubbleDetourInner(IntPtr bubblePtr, IntPtr actorPtr) { // var bubble = (ChatBubble*) bubblePtr; var actorStruct = Marshal.PtrToStructure(actorPtr); var actor = new Actor(actorPtr, actorStruct, this.Dalamud);