11-12-2022, 12:58 AM
Code: (Select All)
Dim f(-1 To 0) As Long
f(-1) = _LoadFont("lucon.ttf", 32, "monospace")
f(0) = _LoadFont("lucon.ttf", 34, "monospace")
Do
f = Not f
_Font f(f)
Print "Hello World, I'm looking for a memory leak!"
Loop Until _KeyHit
Simple code, and I can confirm -- it does indeed leak memory. Looks like it's something the team will have to look into.