From e7d0a5c38ecaae4f8746bdbab9c1e4fb541ea974 Mon Sep 17 00:00:00 2001 From: Pecusx Date: Sat, 8 May 2021 14:11:54 +0200 Subject: [PATCH] Keys names opacity Test only --- libretro/graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro/graph.c b/libretro/graph.c index 737545c..a63a1c8 100755 --- a/libretro/graph.c +++ b/libretro/graph.c @@ -343,7 +343,7 @@ unsigned char *mbuffer=(unsigned char *)surf; for(yrepeat = y; yrepeat < y+ surfh; yrepeat++) for(xrepeat = x; xrepeat< x+surfw; xrepeat++,yptr++) - if(*yptr!=0)mbuffer[xrepeat+yrepeat*VIRTUAL_WIDTH] = *yptr; + if(*yptr!=0)mbuffer[xrepeat+yrepeat*VIRTUAL_WIDTH] = (mbuffer[xrepeat+yrepeat*VIRTUAL_WIDTH]/2) + (*yptr/2); free(linesurf);