Skip to content

Commit 259fd7b

Browse files
committed
Fixed no MOs drawing
1 parent 840e883 commit 259fd7b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Source/Managers/MovableMan.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1687,6 +1687,13 @@ void MovableMan::Update() {
16871687
UpdateDrawMOIDs();
16881688
});
16891689

1690+
////////////////////////////////////////////////////////////////////
1691+
// Draw the MO colors ONLY if this is a drawn update!
1692+
1693+
if (g_TimerMan.DrawnSimUpdate()) {
1694+
Draw(g_SceneMan.GetMOColorBitmap());
1695+
}
1696+
16901697
// Sort team rosters if necessary
16911698
for (int team = Activity::TeamOne; team < Activity::MaxTeamCount; ++team) {
16921699
if (m_SortTeamRoster[Activity::TeamOne]) {

0 commit comments

Comments
 (0)