Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion linuxdoom-1.10/d_net.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ unsigned NetbufferChecksum (void)

c = 0x1234567;

// FIXME -endianess?
// FIXME -endianness?
#ifdef NORMALUNIX
return 0; // byte order problems
#endif
Expand Down
2 changes: 1 addition & 1 deletion linuxdoom-1.10/doomdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ typedef enum
// Fixed point.
//#include "m_fixed.h"

// Endianess handling.
// Endianness handling.
//#include "m_swap.h"


Expand Down
2 changes: 1 addition & 1 deletion linuxdoom-1.10/m_swap.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// $Log:$
//
// DESCRIPTION:
// Endianess handling, swapping 16bit and 32bit.
// Endianness handling, swapping 16bit and 32bit.
//
//-----------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions linuxdoom-1.10/m_swap.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// for more details.
//
// DESCRIPTION:
// Endianess handling, swapping 16bit and 32bit.
// Endianness handling, swapping 16bit and 32bit.
//
//-----------------------------------------------------------------------------

Expand All @@ -29,7 +29,7 @@
#endif


// Endianess handling.
// Endianness handling.
// WAD files are stored little endian.
#ifdef __BIG_ENDIAN__
short SwapSHORT(short);
Expand Down
2 changes: 1 addition & 1 deletion sndserv/wadread.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void** lumpcache;

//
// Something new.
// This version of w_wad.c does handle endianess.
// This version of w_wad.c does handle endianness.
//
#ifndef __BIG_ENDIAN__

Expand Down