Commit: 41ae3fe3e901a8fb1ae3be7c5e118a48e7ec65d4
Parent: 226250857983e111c7c95a6f1ae1b4e7f8d14b16
Author: Randy Palamar
Date: Thu, 13 Mar 2025 22:30:53 -0600
ui: print transmit count for VLS and TPW as well
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/ui.c b/ui.c
@@ -433,9 +433,13 @@ push_das_shader_id(Stream *s, DASShaderID shader, u32 transmit_count)
default: break;
}
- if (shader == DAS_UFORCES) {
+ switch (shader) {
+ case DAS_UFORCES:
+ case DAS_RCA_VLS:
+ case DAS_RCA_TPW:
stream_append_byte(s, '-');
stream_append_u64(s, transmit_count);
+ default: break;
}
return stream_to_s8(s);