- fixed compilation on Linux with glibc

source/glbackend/glbackend.h:201:22: error: use of undeclared identifier 'SHRT_MIN'
source/glbackend/pm_renderstate.h:93:15: error: use of undeclared identifier 'SHRT_MIN'
This commit is contained in:
alexey.lysiuk 2021-10-30 16:26:16 +03:00
parent c7da8ca9d4
commit 9d310c7d6a
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#pragma once
#include <limits.h>
#include <stdlib.h>
#include <algorithm>
#include <vector>

View file

@ -1,5 +1,6 @@
#pragma once
#include <limits.h>
#include "palentry.h"
#include "gl_buffers.h"
#include "renderstyle.h"