From 92c3283ff7e2d26ac644384670047de4667aeb53 Mon Sep 17 00:00:00 2001 From: Sergey Lipskiy Date: Tue, 7 Oct 2014 12:28:18 +0700 Subject: [PATCH] Fix min and max usage. --- OpenGL.cpp | 2 ++ VI.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/OpenGL.cpp b/OpenGL.cpp index a61e24a5..b714bfcf 100644 --- a/OpenGL.cpp +++ b/OpenGL.cpp @@ -24,6 +24,8 @@ #include "Config.h" #include "Log.h" +using namespace std; + bool checkFBO() { GLenum e = glCheckFramebufferStatus(GL_FRAMEBUFFER); switch (e) { diff --git a/VI.cpp b/VI.cpp index 7c48f134..57be969a 100644 --- a/VI.cpp +++ b/VI.cpp @@ -12,6 +12,8 @@ #include "Config.h" #include "Debug.h" +using namespace std; + VIInfo VI; void VI_UpdateSize()