On Thu Jun 13 17:05:00 2024 +0000, Connor McAdams wrote:
Actually I've just realized what I have now as:
err: if (staging_tex) IDirect3DTexture9_Release(staging_tex); else if (tex) IDirect3DTexture9_Release(tex); return hr;
could probably just be simplified to
err: if (tex) IDirect3DTexture9_Release(tex); return hr;
Doh. Sorry to keep changing things up. :)
That sounds right :sweat_smile: And no worries :slight_smile: