mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-02-23 20:21:24 +00:00
Added missing #include <stdint.h> for uinptr_t with MinGW.
This commit is contained in:
parent
f43305fe59
commit
536de6932a
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
Doom 3 BFG Edition GPL Source Code
|
Doom 3 BFG Edition GPL Source Code
|
||||||
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
||||||
|
Copyright (C) 2012 Daniel Gibson
|
||||||
|
Copyright (C) 2012 Robert Beckebans
|
||||||
|
|
||||||
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
||||||
|
|
||||||
|
@ -115,6 +117,9 @@ If you have questions concerning this license or the applicable additional terms
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
// RB: added <stdint.h> for missing uintptr_t with MinGW
|
||||||
|
#include <stdint.h>
|
||||||
|
// RB end
|
||||||
|
|
||||||
//-----------------------------------------------------
|
//-----------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue