Added tesla coil side bar icon, added fastbuild option in rules.ini.

This commit is contained in:
Justin Marshall
2020-08-04 14:14:40 -07:00
parent f8699651b4
commit 72f75b1872
4 changed files with 18 additions and 2 deletions
+6 -1
View File
@@ -3726,7 +3726,12 @@ void CC_Draw_Shape(void const * shapefile, int shapenum, int x, int y, WindowNum
Image_t* shape_image = NULL;
char tmp[512];
sprintf(tmp, "s_%I64u_%d_%d_%d_%d", shapefile, shapenum, rotation, fadingdata, flags);
if (CCGlobalShadowRender) {
sprintf(tmp, "h_%I64u_%d_%d_%d_%d", shapefile, shapenum, rotation, fadingdata, flags);
}
else {
sprintf(tmp, "s_%I64u_%d_%d_%d_%d", shapefile, shapenum, rotation, fadingdata, flags);
}
shape_image = Find_Image(tmp);
if (!shape_image)