This commit is contained in:
Kravickas 2026-03-27 22:44:01 +01:00 committed by GitHub
parent f4d492a8c4
commit f79de5ca51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,8 +148,7 @@ void Liverpool::Process(std::stop_token stoken) {
if (flip && port && drv) {
ASSERT_MSG(flip->buf_id < Libraries::VideoOut::MaxDisplayBuffers,
"Invalid flip buffer index {}", flip->buf_id);
ASSERT_MSG(port->buffer_labels[flip->buf_id] == 1,
"Buffer label not set at flip time for buf_id {}", flip->buf_id);
ASSERT_MSG(port->buffer_labels[flip->buf_id] == 1, "Out of order flip IRQ");
drv->EnqueueFlip(port, flip->buf_id, flip->flip_arg, true);
} else if (flip) {
LOG_WARNING(Lib_GnmDriver, "EOP flip dropped — VideoOut port is not available");