Fix inclusion guards of 3 files (#1509)

* Fix inclusion guards of 3 files

* Apply suggestions from code review

Co-authored-by: Christian Semmler <mail@csemmler.com>

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Anonymous Maarten 2025-05-20 02:15:30 +02:00 committed by GitHub
parent d67318e78b
commit 0b9c1756c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#ifdef 0
#if 0
// For LEGO1 symbols only
// aka `operator new`

View File

@ -1,4 +1,4 @@
#ifdef 0
#if 0
// LIBRARY: LEGO1 0x100cd782
// LIBRARY: BETA10 0x1015fb82

View File

@ -1,3 +1,5 @@
#ifndef TGL_D3DRM_IMPL_H
#define TGL_D3DRM_IMPL_H
#include "compat.h"
#include "decomp.h"
@ -819,3 +821,5 @@ inline D3DRMLIGHTTYPE Translate(LightType tglLightType)
// IID_IDirect3DRMMeshBuilder
} /* namespace TglImpl */
#endif