Skip to content

Commit

Permalink
Crash fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
DerpleMQ2 committed Jan 5, 2024
1 parent aac1628 commit 9c65bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/pull.lua
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function Module:Render()
ImGui.TableNextColumn()
local stateData = PullStateDisplayStrings[PullStatesIDToName[self.TempSettings.PullState]]
if not stateData then
ImGui.PushStyleColor(ImGuiCol.Text, stateData.Color.r, stateData.Color.g, stateData.Color.b, stateData.Color.a)
ImGui.PushStyleColor(ImGuiCol.Text, 1, 1, 1, 1)
ImGui.Text("Invalid State Data... This should auto resolve.")
ImGui.PopStyleColor()
else
Expand Down
2 changes: 1 addition & 1 deletion version.lua
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return { commitId = '95aa316 2024-01-04' }
return { commitId = 'aac1628 2024-01-05' }

0 comments on commit 9c65bc5

Please sign in to comment.