瀏覽代碼

Fix application of internal palettes (and crashing on ARM)

tags/v1.8.0
Xerbo 4 年之前
父節點
當前提交
afb0b9fc98
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      pngio.c

+ 2
- 2
pngio.c 查看文件

@@ -254,12 +254,12 @@ int readPalette(char *filename, rgb_t **pixels) {
return 1;
}

void prow2crow(float **prow, int nrow, char palette, rgb_t **crow){
void prow2crow(float **prow, int nrow, char *palette, rgb_t **crow){
for(int y = 0; y < nrow; y++){
crow[y] = (rgb_t *) malloc(sizeof(rgb_t) * IMG_WIDTH);

for(int x = 0; x < IMG_WIDTH; x++){
if(palette == NULL)
if(*palette == NULL)
crow[y][x].r = crow[y][x].g = crow[y][x].b = prow[y][x];
else
crow[y][x] = applyPalette(palette, prow[y][x]);


Loading…
取消
儲存