summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/drawogl.cpp
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2020-01-22 22:04:35 -0500
committer GitHub <noreply@github.com>2020-01-22 22:04:35 -0500
commit1a5b900759f491bf6b59be67b5446b0a1becb04b (patch)
tree460c3730885a66d8d38ae4998abc3642b8bbd6b7 /src/osd/modules/render/drawogl.cpp
parentdb157a165b71d659d55e6f0bb97278a57a4e8607 (diff)
parent399515c7a783f84b5c40c5e1733500b3d62bf634 (diff)
Merge pull request #6195 from firewave/includes
use C++ library includes (nw)
Diffstat (limited to 'src/osd/modules/render/drawogl.cpp')
-rw-r--r--src/osd/modules/render/drawogl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/modules/render/drawogl.cpp b/src/osd/modules/render/drawogl.cpp
index 7ab0488dfe2..6ee43cd57b7 100644
--- a/src/osd/modules/render/drawogl.cpp
+++ b/src/osd/modules/render/drawogl.cpp
@@ -13,8 +13,8 @@
//============================================================
// standard C headers
-#include <math.h>
-#include <stdio.h>
+#include <cmath>
+#include <cstdio>
// MAME headers
#include "osdcomm.h"
@@ -41,8 +41,8 @@
#include "modules/opengl/gl_shader_mgr.h"
#if defined(SDLMAME_MACOSX) || defined(OSD_MAC)
-#include <string.h>
-#include <stdio.h>
+#include <cstring>
+#include <cstdio>
#include <sys/types.h>
#include <sys/sysctl.h>