From 467c0d6e4b49d1d59c6c424106b0ffb07264ff08 Mon Sep 17 00:00:00 2001 From: Lim Chunwei Date: Tue, 26 Oct 2021 01:34:29 +0800 Subject: [PATCH] Fix missing include for strcpy_s function --- SpaceCadetPinball/gdrv.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/SpaceCadetPinball/gdrv.cpp b/SpaceCadetPinball/gdrv.cpp index f4b9e92..f893ad4 100644 --- a/SpaceCadetPinball/gdrv.cpp +++ b/SpaceCadetPinball/gdrv.cpp @@ -6,6 +6,7 @@ #include "options.h" #include "pinball.h" #include "winmain.h" +#include "string.h" HPALETTE gdrv::palette_handle = nullptr; HINSTANCE gdrv::hinst;