浏览代码

Review code formatting

pull/1490/head
raysan5 4 年前
父节点
当前提交
9ed29725a0
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. +1
    -2
      src/textures.c

+ 1
- 2
src/textures.c 查看文件

@ -2348,8 +2348,7 @@ Rectangle GetImageAlphaBorder(Image image, float threshold)
// Clear image background with given color
void ImageClearBackground(Image *dst, Color color)
{
for (int i = 0; i < dst->width * dst->height; ++i)
ImageDrawPixel(dst, i % dst->width, i / dst->height, color);
for (int i = 0; i < dst->width*dst->height; ++i) ImageDrawPixel(dst, i%dst->width, i/dst->height, color);
}
// Draw pixel within an image

正在加载...
取消
保存