diff options
author | 2015-12-06 14:01:59 -0600 | |
---|---|---|
committer | 2015-12-06 14:01:59 -0600 | |
commit | b910bf5a8559485ce5882b4c414e38db33b30dd0 (patch) | |
tree | 012177c8bd0a83d8d9d7bb021c6395840316ed48 /src/osd/modules/render/drawsdl.cpp | |
parent | 418d057e976332e66ea69c2a4305f7555c0a1022 (diff) |
missed two (nw)
Diffstat (limited to 'src/osd/modules/render/drawsdl.cpp')
-rw-r--r-- | src/osd/modules/render/drawsdl.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/osd/modules/render/drawsdl.cpp b/src/osd/modules/render/drawsdl.cpp index afd2057e0c5..ed3c73af73d 100644 --- a/src/osd/modules/render/drawsdl.cpp +++ b/src/osd/modules/render/drawsdl.cpp @@ -69,11 +69,11 @@ public: m_last_dim(0, 0) { } - /* virtual */ int create(); - /* virtual */ int draw(const int update); - /* virtual */ int xy_to_render_target(const int x, const int y, int *xt, int *yt); - /* virtual */ void destroy(); - /* virtual */ render_primitive_list *get_primitives() + /* virtual */ int create() override; + /* virtual */ int draw(const int update) override; + /* virtual */ int xy_to_render_target(const int x, const int y, int *xt, int *yt) override; + /* virtual */ void destroy() override; + /* virtual */ render_primitive_list *get_primitives() override { osd_dim nd = window().blit_surface_size(); if (nd != m_blit_dim) |