mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
Fix warning with some clang configurations, don't automatically disable bgfx for 10.5 Leopard
This commit is contained in:
parent
e29bd3b895
commit
0a1b6b66b0
@ -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
|
||||
|
@ -74,6 +74,8 @@ public:
|
||||
// midi interface
|
||||
virtual osd_midi_device *create_midi_device() = 0;
|
||||
|
||||
protected:
|
||||
virtual ~osd_interface() { }
|
||||
};
|
||||
|
||||
#endif /* __OSDEPEND_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user