More purging of now-superfluous uintptr_t casting (nw)

This commit is contained in:
AJR 2019-08-15 12:30:28 -04:00
parent 211bda4a53
commit b9920d8de9
2 changed files with 2 additions and 2 deletions

View File

@ -317,7 +317,7 @@ void ti99_gkracker_device::cruwrite(offs_t offset, uint8_t data)
INPUT_CHANGED_MEMBER( ti99_gkracker_device::gk_changed )
{
LOGMASKED(LOG_GKRACKER, "Input changed %d - %d\n", (int)((uintptr_t)param & 0x07), newval);
LOGMASKED(LOG_GKRACKER, "Input changed %d - %d\n", int(param & 0x07), newval);
m_gk_switch[param & 0x07] = newval;
}

View File

@ -294,7 +294,7 @@ INPUT_CHANGED_MEMBER( geneve_mapper_device::settings_changed )
INPUT_CHANGED_MEMBER( genmod_mapper_device::setgm_changed )
{
int number = (int)((uintptr_t)param&0x03);
int number = int(param&0x03);
int value = newval;
switch (number)