Fix warning with some clang configurations, don't automatically disable bgfx for 10.5 Leopard

This commit is contained in:
Vas Crabb 2015-04-03 08:12:03 +11:00
parent e29bd3b895
commit 0a1b6b66b0
2 changed files with 2 additions and 3 deletions

View File

@ -218,9 +218,6 @@ if _OPTIONS["NOASM"]=="1" and not _OPTIONS["FORCE_DRC_C_BACKEND"] then
end
USE_BGFX = 1
if (_OPTIONS["targetos"]=="macosx" and os_version < 100600) then
USE_BGFX = 0
end
if(_OPTIONS["USE_BGFX"]~=nil) then
USE_BGFX = tonumber(_OPTIONS["USE_BGFX"])
end

View File

@ -74,6 +74,8 @@ public:
// midi interface
virtual osd_midi_device *create_midi_device() = 0;
protected:
virtual ~osd_interface() { }
};
#endif /* __OSDEPEND_H__ */