Drop unnecessary boolean casts after type refactor

Este commit está contenido en:
2025-09-23 19:17:33 +02:00
padre 9298aef87e
commit 6e10089280
Se han modificado 7 ficheros con 13 adiciones y 13 borrados

Ver fichero

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