- 论坛徽章:
- 0
|
代码如下,sheets_refresh()函数中sht=shtctl->sheet_info[h]语句报错:incompatible types in assignment.问题出在哪里?
#define MAX_SHEETS 256
struct SHEET{
unsigned char *buf;
int bxsize,bysize,vx0,vy0,col_inv,height,flags; //bxsize,bysize,图层大小
};
struct SHTCTL{ //sheet controller
unsigned char *vram;
int xsize,ysize,top;
struct SHEET *sheet_addr[MAX_SHEETS]; //记录地址
struct SHEET sheet_info[MAX_SHEETS]; //记录各个图层详细信息
};
//其实以上信息是放在头文件中的,这里引用了过来
void sheets_refresh(struct SHTCTL *shtctl)
{
int h,bx,by,vx,vy;
unsigned char *buf,c,*vram=shtctl->vram;
struct SHEET *sht;
for(h=0;h<= shtctl->top;h++){
sht=shtctl->sheet_info[h]; //出错语句
buf=sht->buf;
for(by=0;by< sht->bysize;by++){
vy=sht->vy0+by;
for(bx=0;bx< sht->bxsize;bx++){
vx=sht->vx0+bx;
c=buf[by*sht->bxsize+bx];
if(c!=sht->col_inv){
vram[vy*shtctl->xsize+vx]=c;
}
}
}
}
return;
} |
|