Revert "UI: Remove unnecessary IS_WIN32 macro"

This reverts commit 113b6317e7.
This commit is contained in:
Matt Gajownik 2021-04-02 21:15:30 +11:00
parent 113b6317e7
commit baf980f7a6

View file

@ -4050,6 +4050,12 @@ bool OBSBasic::Active() const
return outputHandler->Active();
}
#ifdef _WIN32
#define IS_WIN32 1
#else
#define IS_WIN32 0
#endif
static inline int AttemptToResetVideo(struct obs_video_info *ovi)
{
return obs_reset_video(ovi);
@ -4168,7 +4174,7 @@ int OBSBasic::ResetVideo()
}
ret = AttemptToResetVideo(&ovi);
if (_WIN32 && ret != OBS_VIDEO_SUCCESS) {
if (IS_WIN32 && ret != OBS_VIDEO_SUCCESS) {
if (ret == OBS_VIDEO_CURRENTLY_ACTIVE) {
blog(LOG_WARNING, "Tried to reset when "
"already active");