mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
More purging of now-superfluous uintptr_t casting (nw)
This commit is contained in:
parent
211bda4a53
commit
b9920d8de9
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user