Skip to content

Commit

Permalink
ESP32 compilation fix #132
Browse files Browse the repository at this point in the history
  • Loading branch information
lexus2k committed Oct 28, 2021
1 parent 99c5533 commit b229322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/intf/vga/esp32/CompositeOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ void CompositeOutput::check_buffer()
if (m_ptr == m_end)
{
size_t bytes_written;
i2s_write_bytes(I2S_PORT, (char*)line, sizeof(uint16_t) * (m_end - line), &bytes_written, portMAX_DELAY);
i2s_write(I2S_PORT, (char*)line, sizeof(uint16_t) * (m_end - line), &bytes_written, portMAX_DELAY);
m_ptr = line;
}
}
Expand Down

0 comments on commit b229322

Please sign in to comment.