This commit is contained in:
Branimir Karadžić 2016-10-02 20:01:28 -07:00
Родитель e5b9b8d7aa
Коммит 441459f5c0
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -105,7 +105,13 @@ namespace bgfx { namespace hlsl
continue;
}
BX_TRACE("Loaded %s compiler.", compiler->fileName);
if (g_verbose)
{
char filePath[PATH_MAX];
GetModuleFileNameA( (HMODULE)s_d3dcompilerdll, filePath, sizeof(filePath) );
BX_TRACE("Loaded %s compiler (%s).", compiler->fileName, filePath);
}
return compiler;
}