This commit is contained in:
Rachael Alexanderson 2017-03-08 21:25:24 -05:00
commit cc9a2e5121
283 changed files with 3308 additions and 2963 deletions

View file

@ -130,7 +130,7 @@ double ViewSin, ViewTanSin;
AActor *camera; // [RH] camera to draw from. doesn't have to be a player
double r_TicFracF; // same as floating point
DWORD r_FrameTime; // [RH] Time this frame started drawing (in ms)
uint32_t r_FrameTime; // [RH] Time this frame started drawing (in ms)
bool r_NoInterpolate;
bool r_showviewer;
@ -318,7 +318,7 @@ subsector_t *R_PointInSubsector (fixed_t x, fixed_t y)
}
while (!((size_t)node & 1));
return (subsector_t *)((BYTE *)node - 1);
return (subsector_t *)((uint8_t *)node - 1);
}
//==========================================================================