(GL/Gfx) Cleanup

This commit is contained in:
twinaphex 2014-10-02 00:49:38 +02:00
parent ca12482af0
commit 306d1f8809
2 changed files with 11 additions and 12 deletions

View File

@ -89,17 +89,17 @@ extern char rotation_lut[4][32];
/* ABGR color format defines */
#define WHITE 0xffffffffu
#define WHITE 0xffffffffu
#define RED 0xff0000ffu
#define GREEN 0xff00ff00u
#define BLUE 0xffff0000u
#define YELLOW 0xff00ffffu
#define PURPLE 0xffff00ffu
#define CYAN 0xffffff00u
#define ORANGE 0xff0063ffu
#define SILVER 0xff8c848cu
#define LIGHTBLUE 0xFFFFE0E0U
#define LIGHTORANGE 0xFFE0EEFFu
#define GREEN 0xff00ff00u
#define BLUE 0xffff0000u
#define YELLOW 0xff00ffffu
#define PURPLE 0xffff00ffu
#define CYAN 0xffffff00u
#define ORANGE 0xff0063ffu
#define SILVER 0xff8c848cu
#define LIGHTBLUE 0xFFFFE0E0U
#define LIGHTORANGE 0xFFE0EEFFu
struct aspect_ratio_elem
{

View File

@ -137,10 +137,9 @@ static inline bool gl_check_error(void)
break;
case GL_NO_ERROR:
return true;
default:
RARCH_ERR("Non specified GL error.\n");
}
RARCH_ERR("Non specified GL error.\n");
return false;
}