rocket/ogl_editor/src/minmax.h
Konsta 'sooda' Hölttä 650bb4e01d ogl_editor: letter case fixes
Make it compile on linux where filenames are case sensitive
2013-06-23 15:42:22 +03:00

25 lines
451 B
C

#pragma once
#include <emgui/Types.h>
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
static EMGUI_INLINE int maxi(int a, int b)
{
if (a > b)
return a;
return b;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
static EMGUI_INLINE int mini(int a, int b)
{
if (a < b)
return a;
return b;
}