diff options
Diffstat (limited to 'src/elements/newgraphics.c')
| -rw-r--r-- | src/elements/newgraphics.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/elements/newgraphics.c b/src/elements/newgraphics.c index af332fb..cf7b9a8 100644 --- a/src/elements/newgraphics.c +++ b/src/elements/newgraphics.c @@ -168,6 +168,14 @@ int graphics_WIFI(GRAPHICS_FUNC_ARGS) *pixel_mode |= EFFECT_LINES; return 0; } +int graphics_GEL(GRAPHICS_FUNC_ARGS) +{ + int q = cpart->tmp; + *colr = q*(32-255)/120+255; + *colg = q*(48-186)/120+186; + *colb = q*208/120; + return 0; +} int graphics_PRTI(GRAPHICS_FUNC_ARGS) { *firea = 8; |
