Previous 199869 Revisions Next

r30652 Sunday 25th May, 2014 at 09:21:42 UTC by Dirk Best
Amiga: Changed constants to enum to avoid some issues with debug builds.
[src/mame/includes]amiga.h

trunk/src/mame/includes/amiga.h
r30651r30652
460460   static const int CLK_E_NTSC = CLK_7M_NTSC / 10;
461461
462462   // screen layout
463   static const int SCREEN_WIDTH = 910;
464   static const int SCREEN_HEIGHT_PAL = 312;
465   static const int SCREEN_HEIGHT_NTSC = 262;
466   static const int VBLANK_PAL = 29; // 26
467   static const int VBLANK_NTSC = 21;
468   static const int HBLANK = 186;
463   enum
464   {
465      SCREEN_WIDTH = 910,
466      SCREEN_HEIGHT_PAL = 312,
467      SCREEN_HEIGHT_NTSC = 262,
468      VBLANK_PAL = 29, // 26
469      VBLANK_NTSC = 21,
470      HBLANK = 186
471   };
469472
470473   required_shared_ptr<UINT16> m_chip_ram;
471474   required_shared_ptr<UINT16> m_custom_regs;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team