[nostalgia] Remove use of deleted function

This commit is contained in:
Gary Talent 2024-05-25 21:34:08 -05:00
parent cad8c73137
commit 9aec5772f4

View File

@ -139,7 +139,7 @@ void TileSheetPixels::setBufferObjects(ox::Vec2 const&paneSize) noexcept {
return; return;
} }
if (m_model.pixelSelected(i)) { if (m_model.pixelSelected(i)) {
color = studio::applySelectionColor(color); color = applySelectionColor(color);
} }
setPixelBufferObject(paneSize, static_cast<unsigned>(i * VertexVboRows), fx, fy, color, vbo, ebo); setPixelBufferObject(paneSize, static_cast<unsigned>(i * VertexVboRows), fx, fy, color, vbo, ebo);
}); });