mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 20:43:15 +00:00
- fixed linkage for fuzzviewheight
- fixed naming conflict with GCC's virtual table.
This commit is contained in:
parent
e4c208602d
commit
6adcba3c4b
3 changed files with 4 additions and 4 deletions
|
@ -2564,7 +2564,7 @@ namespace swrenderer
|
|||
/////////////////////////////////////////////////////////////////////////
|
||||
|
||||
DrawSlabPalCommand::DrawSlabPalCommand(int dx, fixed_t v, int dy, fixed_t vi, const uint8_t *vptr, uint8_t *p, const uint8_t *colormap)
|
||||
: _dx(dx), _v(v), _dy(dy), _vi(vi), _vptr(vptr), _p(p), _colormap(colormap)
|
||||
: _dx(dx), _v(v), _dy(dy), _vi(vi), _vvptr(vptr), _p(p), _colormap(colormap)
|
||||
{
|
||||
using namespace drawerargs;
|
||||
_pitch = dc_pitch;
|
||||
|
@ -2578,7 +2578,7 @@ namespace swrenderer
|
|||
int pitch = _pitch;
|
||||
int width = _dx;
|
||||
const uint8_t *colormap = _colormap;
|
||||
const uint8_t *source = _vptr;
|
||||
const uint8_t *source = _vvptr;
|
||||
fixed_t fracpos = _v;
|
||||
fixed_t iscale = _vi;
|
||||
|
||||
|
|
|
@ -230,7 +230,7 @@ namespace swrenderer
|
|||
fixed_t _v;
|
||||
int _dy;
|
||||
fixed_t _vi;
|
||||
const uint8_t *_vptr;
|
||||
const uint8_t *_vvptr;
|
||||
uint8_t *_p;
|
||||
const uint8_t *_colormap;
|
||||
int _pitch;
|
||||
|
|
|
@ -118,7 +118,7 @@ static void R_ShutdownRenderer();
|
|||
|
||||
extern short *openings;
|
||||
extern bool r_fakingunderwater;
|
||||
extern "C" int fuzzviewheight;
|
||||
extern int fuzzviewheight;
|
||||
extern subsector_t *InSubsector;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue