mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed one more undefined defines errors.
This commit is contained in:
parent
74c19cce1b
commit
1baf1c0734
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@ void freeDemoData(struct NVGcontext* vg, struct DemoData* data)
|
|||
nvgDeleteImage(vg, data->images[i]);
|
||||
}
|
||||
|
||||
#if _MSC_VER < 1800
|
||||
#if defined(_MSC_VER) && (_MSC_VER < 1800)
|
||||
inline float round(float _f)
|
||||
{
|
||||
return float(int(_f) );
|
||||
|
|
Loading…
Reference in a new issue