mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 21:07:42 +00:00
Blender Python API updates and better CMake dependency handling
This commit is contained in:
@@ -69,7 +69,7 @@ std::u16string Char16Format(const wchar_t* format, ...) {
|
||||
wchar_t resultBuf[FORMAT_BUF_SZ];
|
||||
va_list va;
|
||||
va_start(va, format);
|
||||
int printSz = vswprintf(resultBuf, FORMAT_BUF_SZ, format, va);
|
||||
size_t printSz = vswprintf(resultBuf, FORMAT_BUF_SZ, format, va);
|
||||
va_end(va);
|
||||
std::u16string res;
|
||||
res.reserve(printSz);
|
||||
|
||||
Reference in New Issue
Block a user