Skip to content

Commit a410605

Browse files
committed
refactor(comments): Replace 'compile' with 'build' in project code comments (#1361)
1 parent b35dd54 commit a410605

File tree

29 files changed

+30
-30
lines changed

29 files changed

+30
-30
lines changed

Core/GameEngine/Include/Common/Debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class AsciiString;
8484
#if defined(ALLOW_DEBUG_UTILS) && !defined(DEBUG_STACKTRACE) && !defined(DISABLE_DEBUG_STACKTRACE)
8585
#define DEBUG_STACKTRACE 1
8686
#ifndef DEBUG_LOGGING
87-
#define DEBUG_LOGGING 1 // TheSuperHackers @compile Stack trace requires logging.
87+
#define DEBUG_LOGGING 1 // TheSuperHackers @build Stack trace requires logging.
8888
#endif
8989
#endif
9090
#if defined(ALLOW_DEBUG_UTILS) && !defined(DEBUG_PROFILE) && !defined(DISABLE_DEBUG_PROFILE)

Core/Libraries/Include/Lib/BaseTypeCore.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//
2222
// Basic types and constants
2323
// Author: Michael S. Booth, January 1995, September 2000
24-
// TheSuperHackers @compile feliwir 11/04/2025 Move common BaseType.h code to BaseTypeCore.h
24+
// TheSuperHackers @build feliwir 11/04/2025 Move common BaseType.h code to BaseTypeCore.h
2525
//
2626
///////////////////////////////////////////////////////////////////////////////
2727

@@ -34,7 +34,7 @@
3434

3535
#include <math.h>
3636
#include <string.h>
37-
// TheSuperHackers @compile feliwir 07/04/2025 Adds utility macros for cross-platform compatibility
37+
// TheSuperHackers @build feliwir 07/04/2025 Adds utility macros for cross-platform compatibility
3838
#include <Utility/compat.h>
3939
#include <Utility/CppMacros.h>
4040
#include <Utility/stdint_adapter.h>

Core/Libraries/Source/WWVegas/WW3D2/soundrobj.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
#ifndef __SOUNDROBJ_H
4242
#define __SOUNDROBJ_H
4343

44-
// TheSuperHackers @compile xezon 05/04/2025 Compile in WWAUDIO for Renegade's w3dview tool.
44+
// TheSuperHackers @build xezon 05/04/2025 Compile in WWAUDIO for Renegade's w3dview tool.
4545
#define noWWAUDIO 1
4646

4747
#if noWWAUDIO // (gth) removing dependency on WWAUDIO

Core/Libraries/Source/WWVegas/WWLib/CRC.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
#include <stdlib.h>
4444

45-
// TheSuperHackers @compile feliwir 17/04/2025 include _ltrotl macros
45+
// TheSuperHackers @build feliwir 17/04/2025 include _ltrotl macros
4646
#include <Utility/intrin_compat.h>
4747

4848
/*

Core/Libraries/Source/WWVegas/WWLib/always.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#include <assert.h>
4646
#include <new>
4747

48-
// TheSuperHackers @compile feliwir 17/04/2025 include utility macros for cross-platform compatibility
48+
// TheSuperHackers @build feliwir 17/04/2025 include utility macros for cross-platform compatibility
4949
#include <Utility/compat.h>
5050
#include <Utility/stdint_adapter.h>
5151
#include <Utility/CppMacros.h>

Core/Libraries/Source/WWVegas/WWLib/rawfile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* RawFileClass::Write -- Writes the specified data to the buffer specified. *
5252
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
5353

54-
// TheSuperHackers @compile feliwir 11/04/2025 We removed Win32 API here and use plain C
54+
// TheSuperHackers @build feliwir 11/04/2025 We removed Win32 API here and use plain C
5555
#include "always.h"
5656
#include "RAWFILE.H"
5757
#include <stddef.h>

Core/Libraries/Source/WWVegas/WWLib/refcount.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#include "refcount.h"
4343

44-
// TheSuperHackers @compile feliwir 17/04/2025 include __debugbreak macros
44+
// TheSuperHackers @build feliwir 17/04/2025 include __debugbreak macros
4545
#include <Utility/intrin_compat.h>
4646

4747
#ifndef NDEBUG

Core/Libraries/Source/WWVegas/WWStub/wwallocstub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
** along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818

19-
// TheSuperHackers @compile feliwir 15/04/2025 Simple allocator implementation useful for tools
19+
// TheSuperHackers @build feliwir 15/04/2025 Simple allocator implementation useful for tools
2020
#include "always.h"
2121
#include <stdlib.h>
2222

Core/Libraries/Source/WWVegas/WWStub/wwdebugstub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
** along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818

19-
// TheSuperHackers @compile feliwir 15/04/2025 Simple debug implementation useful for tools
19+
// TheSuperHackers @build feliwir 15/04/2025 Simple debug implementation useful for tools
2020
#include "wwdebug.h"
2121
#include <stdarg.h>
2222
#include <stdlib.h>

Core/Tools/Babylon/StdAfx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
3232

33-
// TheSuperHackers @compile xezon 24/03/2025 Prevent afxwin.h from loading d3d9types.h, colliding with our own DirectX library.
33+
// TheSuperHackers @build xezon 24/03/2025 Prevent afxwin.h from loading d3d9types.h, colliding with our own DirectX library.
3434
#define _d3d9TYPES_H_
3535

3636
#include <afxwin.h> // MFC core and standard components

0 commit comments

Comments
 (0)