Browse Source

Reset color to white before drawing each of the surfaces

master
Krisjanis Rijnieks 10 years ago
parent
commit
423d17af86
  1. 1
      src/Surfaces/SurfaceManager.cpp

1
src/Surfaces/SurfaceManager.cpp

@ -10,6 +10,7 @@ SurfaceManager::~SurfaceManager() { clear(); }
void SurfaceManager::draw() {
for (int i = 0; i < surfaces.size(); i++) {
ofSetColor(255, 255, 255, 255);
surfaces[i]->draw();
}
}

Loading…
Cancel
Save