This commit is contained in:
Chuck Walbourn 2020-12-01 15:33:48 -08:00
Родитель 31e1b941e5
Коммит abe3e208b0
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -94,7 +94,7 @@ source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
source_group(isochart REGULAR_EXPRESSION UVAtlas/isochart/*.*)
target_include_directories(${PROJECT_NAME} PUBLIC UVAtlas/inc)
target_include_directories(${PROJECT_NAME} PRIVATE UVAtlas UVAtlas/UVAtlas/geodesics UVAtlas/isochart)
target_include_directories(${PROJECT_NAME} PRIVATE UVAtlas UVAtlas/geodesics UVAtlas/isochart)
if(MSVC)
# Use higher Warning Level

Просмотреть файл

@ -888,8 +888,8 @@ int __cdecl wmain(_In_ int argc, _In_z_count_(argc) wchar_t* argv[])
else
{
hr = LoadFromOBJ(pConv->szSrc, inMesh, inMaterial,
(dwOptions & (1 << OPT_CLOCKWISE)) ? false : true,
(dwOptions & (1 << OPT_NODDS)) ? false : true);
(dwOptions & (DWORD64(1) << OPT_CLOCKWISE)) ? false : true,
(dwOptions & (DWORD64(1) << OPT_NODDS)) ? false : true);
}
if (FAILED(hr))
{