Fix warning for fopen() in RecorderCallbacks.c

This commit is contained in:
Cameron Gutman 2023-10-06 23:17:25 -05:00
parent 7580f3f8e3
commit d457fbb487

View File

@ -1,3 +1,8 @@
#ifdef _WIN32
// Don't warn for fopen() usage
#define _CRT_SECURE_NO_WARNINGS 1
#endif
#include "Limelight-internal.h"
static FILE* videoFile;