Triforce/Touchscreen: Fix LOG type.

This commit is contained in:
Jordan Woyak
2026-03-23 00:42:56 -05:00
parent 3c8a72eb18
commit 49518164bb

View File

@@ -37,7 +37,8 @@ void Touchscreen::Update()
if (const auto input = GetRxByteSpan(); !input.empty())
{
// The Key of Avalon doesn't write to the device, it only reads.
WARN_LOG_FMT(AMMEDIABOARD, "Unexpected write of {} bytes to touchscreen.", input.size());
WARN_LOG_FMT(SERIALINTERFACE_AMBB, "Unexpected write of {} bytes to touchscreen.",
input.size());
ConsumeRxBytes(input.size());
}