- silenced a few conversion truncation warnings.

This commit is contained in:
Christoph Oelckers 2022-10-12 00:17:17 +02:00
parent f35c610328
commit 97223af592
7 changed files with 10 additions and 8 deletions

View file

@ -62,7 +62,7 @@ double Get(int index, DCoreActor* actor, int type)
void Set(int index, DCoreActor* actor, int type, double val)
{
int old;
double old;
switch(type)
{
case Interp_Sect_Floorz: sector[index].setfloorz(val); break;