mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01:00
Fix unused variable warning on non-Emscripten
Otherwise, the compiler would warn that `sync` is unused.
This commit is contained in:
parent
15b6fb0edd
commit
c83a360dd3
1 changed files with 2 additions and 0 deletions
|
@ -887,6 +887,8 @@ bool FILESYSTEM_saveTiXml2Document(const char *name, tinyxml2::XMLDocument& doc,
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
UNUSED(sync);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue