mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed missing #include's for targets without precompiled header
src/utility/palette.cpp:76:21: error: ‘DBL_MAX’ was not declared in this scope src/utility/palette.cpp:84:76: error: ‘pow’ was not declared in this scope src/utility/palette.cpp:89:41: error: ‘abs’ was not declared in this scope src/utility/palette.cpp:92:3: error: ‘fdist’ was not declared in this scope src/utility/palette.cpp:196:46: error: ‘memcpy’ was not declared in this scope src/utility/palette.cpp:298:19: error: ‘floor’ was not declared in this scope
This commit is contained in:
parent
38fec546a7
commit
772adc86be
1 changed files with 5 additions and 0 deletions
|
@ -35,6 +35,11 @@
|
|||
#include "palette.h"
|
||||
#include "palentry.h"
|
||||
|
||||
#include <float.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
/****************************/
|
||||
/* Palette management stuff */
|
||||
/****************************/
|
||||
|
|
Loading…
Reference in a new issue