Drop unnecessary boolean casts after type refactor

This commit is contained in:
2025-09-23 19:17:33 +02:00
parent 9298aef87e
commit 6e10089280
7 changed files with 13 additions and 13 deletions

View File

@@ -398,5 +398,5 @@ XTCDECL
BOOLEAN
Debug::SerialPortReady()
{
return (BOOLEAN)(SerialPort.Flags & COMPORT_FLAG_INIT);
return (SerialPort.Flags & COMPORT_FLAG_INIT);
}