summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video.h')
-rw-r--r--src/emu/video.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/emu/video.h b/src/emu/video.h
index 71313fe58b2..7e19de3c5ab 100644
--- a/src/emu/video.h
+++ b/src/emu/video.h
@@ -25,8 +25,8 @@
//**************************************************************************
// number of levels of frameskipping supported
-const int FRAMESKIP_LEVELS = 12;
-const int MAX_FRAMESKIP = FRAMESKIP_LEVELS - 2;
+constexpr int FRAMESKIP_LEVELS = 12;
+constexpr int MAX_FRAMESKIP = FRAMESKIP_LEVELS - 2;
#define LCD_FRAMES_PER_SECOND 30
@@ -34,13 +34,6 @@ const int MAX_FRAMESKIP = FRAMESKIP_LEVELS - 2;
// TYPE DEFINITIONS
//**************************************************************************
-// forward references
-class render_target;
-class screen_device;
-class avi_file;
-
-
-
// ======================> video_manager
class video_manager