Shut up gcc (-Werror ... ) on unititialized vars
This commit is contained in:
parent
c46fbb3790
commit
e276fd7635
1 changed files with 2 additions and 2 deletions
|
@ -1403,7 +1403,7 @@ global void VideoDraw32Fog32Alpha(const GraphicData* data,int x,int y)
|
|||
gp=sp+TileSizeY*TileSizeX;
|
||||
dp=VideoMemory32+x+y*VideoWidth;
|
||||
da=VideoWidth;
|
||||
lasti=0;
|
||||
lastrgb=lasti=0;
|
||||
|
||||
while( sp<gp ) {
|
||||
#undef FOG_SCALE
|
||||
|
@ -1473,7 +1473,7 @@ global void VideoDraw32OnlyFog32Alpha(const GraphicData* data __attribute__((unu
|
|||
dp=VideoMemory32+x+y*VideoWidth;
|
||||
gp=dp+VideoWidth*TileSizeY;
|
||||
da=VideoWidth;
|
||||
lasti = 0;
|
||||
lastrgb=lasti=0;
|
||||
|
||||
while( dp<gp ) {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue