mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
fix for MSVC ostream::put takes a char & 0xff doesn't fit. (nw)
This commit is contained in:
parent
ede8a5b84f
commit
81269d8fbf
@ -699,7 +699,7 @@ bool esqpanel2x40_vfx_device::write_contents(std::ostream &o)
|
||||
m_vfd->write_contents(o);
|
||||
for (int i = 0; i < m_light_states.size(); i++)
|
||||
{
|
||||
o.put(0xff);
|
||||
o.put(char(0xff));
|
||||
o.put((m_light_states[i] << 6) | i);
|
||||
}
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user