mirror of
https://github.com/holub/mame
synced 2025-04-29 19:37:17 +03:00
Fix compile on MSVC 2012 from Peter Ferrie (nw)
This commit is contained in:
parent
5d642ee5eb
commit
24e7833459
@ -372,7 +372,7 @@ void ufo_state::machine_start()
|
|||||||
{
|
{
|
||||||
// init/zerofill
|
// init/zerofill
|
||||||
static const float motor_speeds[4] =
|
static const float motor_speeds[4] =
|
||||||
{ 1.0/CABINET_WIDTH, 1.0/CABINET_DEPTH, 1.0/CABINET_HEIGHT, 1.0/CRANE_SIZE };
|
{ (float) (1.0/CABINET_WIDTH), (float) (1.0/CABINET_DEPTH), (float) (1.0/CABINET_HEIGHT), (float) (1.0/CRANE_SIZE) };
|
||||||
|
|
||||||
for (int p = 0; p < 2; p++)
|
for (int p = 0; p < 2; p++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user