mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
Fix compiling cobra with msvc. U64() is only for constants greater than 32 bits.
This commit is contained in:
parent
17aca9350e
commit
ac395f19f1
@ -1763,7 +1763,7 @@ READ64_MEMBER(cobra_state::gfx_unk1_r)
|
||||
{
|
||||
// mbuslib_init fails if this is not 0x7f
|
||||
|
||||
r |= U64(0x7f) << 40;
|
||||
r |= (UINT64) 0x7f << 40;
|
||||
}
|
||||
if (ACCESSING_BITS_24_31)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user