From 85ff5d2a66b41ed85f5ec7d9e1cc4800e0f6d898 Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Tue, 15 Mar 2022 17:06:36 +0100 Subject: [PATCH] Use FataError for NVRHI errors so we get an small info window later on --- neo/sys/DeviceManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/sys/DeviceManager.cpp b/neo/sys/DeviceManager.cpp index 0526efc2..a756774e 100644 --- a/neo/sys/DeviceManager.cpp +++ b/neo/sys/DeviceManager.cpp @@ -107,7 +107,7 @@ void DefaultMessageCallback::message( nvrhi::MessageSeverity severity, const cha common->Warning( messageText ); break; case nvrhi::MessageSeverity::Error: - common->Error( messageText ); + common->FatalError( messageText ); break; case nvrhi::MessageSeverity::Fatal: common->FatalError( messageText );