Reduce other unnecessary errors to warnings in NV counters code

This commit is contained in:
baldurk
2022-12-27 12:21:51 +00:00
parent 2cd474c496
commit 36bf7b4970
3 changed files with 3 additions and 3 deletions
@@ -50,7 +50,7 @@ struct NVD3D11Counters::Impl
{
if(!NVCounterEnumerator::InitializeNvPerf())
{
RDCERR("NvPerf library failed to initialize");
RDCWARN("NvPerf library failed to initialize");
LibraryNotFound = true;
// NOTE: Return success here so that we can later show a message
@@ -53,7 +53,7 @@ struct NVD3D12Counters::Impl
{
if(!NVCounterEnumerator::InitializeNvPerf())
{
RDCERR("NvPerf library failed to initialize");
RDCWARN("NvPerf library failed to initialize");
LibraryNotFound = true;
// NOTE: Return success here so that we can later show a message
+1 -1
View File
@@ -48,7 +48,7 @@ struct NVGLCounters::Impl
{
if(!NVCounterEnumerator::InitializeNvPerf())
{
RDCERR("NvPerf library failed to initialize");
RDCWARN("NvPerf library failed to initialize");
LibraryNotFound = true;
// NOTE: Return success here so that we can later show a message