Fixed a bug from previous CL that broke shadows.

This commit is contained in:
Justin Marshall
2020-08-04 14:02:21 -07:00
parent 0e3ccf4bcf
commit f8699651b4
+1 -1
View File
@@ -523,7 +523,7 @@ Image_t* Image_CreateImageFrom8Bit(const char* name, int Width, int Height, unsi
buffer[(i * 4) + 0] = 120;
buffer[(i * 4) + 1] = 120;
buffer[(i * 4) + 2] = 120;
buffer[(i * 4) + 3] = 120;
buffer[(i * 4) + 3] = 255;
continue;
}