From 01f3168e71393d38489b21772e8b584c44c13d89 Mon Sep 17 00:00:00 2001 From: Christian Semmler <mail@csemmler.com> Date: Wed, 10 Jan 2024 13:47:54 -0500 Subject: [PATCH] Use NULL where appropriate --- LEGO1/lego/legoomni/src/video/legovideomanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/lego/legoomni/src/video/legovideomanager.cpp b/LEGO1/lego/legoomni/src/video/legovideomanager.cpp index df88ad58..1db16c2c 100644 --- a/LEGO1/lego/legoomni/src/video/legovideomanager.cpp +++ b/LEGO1/lego/legoomni/src/video/legovideomanager.cpp @@ -17,7 +17,7 @@ LegoVideoManager::LegoVideoManager() m_renderer = NULL; m_3dManager = NULL; m_viewROI = NULL; - m_direct3d = 0; + m_direct3d = NULL; m_unk0xe6 = FALSE; memset(m_unk0x78, 0, sizeof(m_unk0x78)); m_unk0x78[0] = 0x6c; @@ -29,7 +29,7 @@ LegoVideoManager::LegoVideoManager() m_cursorX = m_cursorY; m_cursorYCopy = m_cursorY; m_cursorXCopy = m_cursorY; - m_unk0x514 = 0; + m_unk0x514 = NULL; m_fullScreenMovie = FALSE; m_drawFPS = FALSE; m_unk0x528 = 0;