From 7f6d2deffab87876c2f0c669b3cbc3ebeafc7107 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 15 Apr 2024 02:43:57 -0700 Subject: [PATCH] Fix messages for missing / deprecated GPUs --- client/cs_statefile.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/client/cs_statefile.cpp b/client/cs_statefile.cpp index e414088c2e..8e44aca305 100644 --- a/client/cs_statefile.cpp +++ b/client/cs_statefile.cpp @@ -293,13 +293,18 @@ int CLIENT_STATE::parse_state_file_aux(const char* fname) { } } if (avp->missing_coproc) { - msg_printf(project, MSG_INFO, - "App version uses missing GPU '%s' - discarding", - avp->missing_coproc_name - ); if (strstr(avp->missing_coproc_name, "Apple ")) { + msg_printf(project, MSG_INFO, + "App version uses deprecated GPU type '%s' - discarding", + avp->missing_coproc_name + ); delete avp; continue; + } else { + msg_printf(project, MSG_INFO, + "App version uses missing GPU '%s'", + avp->missing_coproc_name + ); } } retval = link_app_version(project, avp);