try disabling warning 4947 in ConfigOption.h

(it doesn't matter..  just an obsoletion notice for `Windows::Forms::Control::Scale`, which probably isn't going away anytime soon.
This commit is contained in:
somewhatlurker
2019-09-14 16:13:48 +10:00
parent 4a14c7d2d8
commit 5311c39643
@@ -1,4 +1,6 @@
#pragma once
#pragma warning(push)
#pragma warning(disable: 4947)
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files
@@ -1179,4 +1181,6 @@ Panel^ MakePanel(int width, int height, std::vector<ConfigOptionBase*> &cfg, Too
}
return outpanel;
}
}
#pragma warning(pop)