diff options
Diffstat (limited to 'src/osd/uwp/video.h')
-rw-r--r-- | src/osd/uwp/video.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/osd/uwp/video.h b/src/osd/uwp/video.h deleted file mode 100644 index 5725a2bb0d4..00000000000 --- a/src/osd/uwp/video.h +++ /dev/null @@ -1,19 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Aaron Giles -//============================================================ -// -// video.h - UWP implementation of MAME video routines -// -//============================================================ - -#ifndef __UWP_VIDEO__ -#define __UWP_VIDEO__ - -#include "modules/osdhelper.h" - -inline osd_rect RECT_to_osd_rect(const RECT &r) -{ - return osd_rect(r.left, r.top, r.right - r.left, r.bottom - r.top); -} - -#endif |