Explorar el Código

gpu: fix an annoying Visual Studio warning in renderer.h.

undefined
Sam Hocevar hace 10 años
padre
commit
1a19fe393e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/lol/gpu/renderer.h

+ 1
- 1
src/lol/gpu/renderer.h Ver fichero

@@ -40,7 +40,7 @@ static inline ClearMask operator |(ClearMask const &a, ClearMask const &b)

static inline bool operator &(ClearMask const &a, ClearMask const &b)
{
return (bool)((uint8_t)a & (uint8_t)b);
return !!((uint8_t)a & (uint8_t)b);
}

/* A safe enum to indicate the blend equation. */


Cargando…
Cancelar
Guardar