mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 23:32:04 +00:00
GCC compile fix
This commit is contained in:
parent
c235de5c22
commit
4142b6ed1b
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ FORCEINLINE uint32_t alpha_blend(uint32_t fg, uint32_t bg)
|
|||
return 0xff000000 | (red << 16) | (green << 8) | blue;
|
||||
}
|
||||
|
||||
inline bool span_sampler_setup(const uint32_t *&source, int &xbits, int &ybits, fixed_t xstep, fixed_t ystep)
|
||||
inline bool span_sampler_setup(const uint32_t * RESTRICT &source, int &xbits, int &ybits, fixed_t xstep, fixed_t ystep)
|
||||
{
|
||||
if (!r_bilinear)
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue