Browse Source

Naïve fix for draw-loop starving.

Herp derp, it helps to fire off the update callback once an object is
read...
Adam Johnson 11 years ago
parent
commit
1cd4681980
  1. 2
      Sources/Plasma/PubUtilLib/plNetClient/plNetCliAgeJoiner.cpp

2
Sources/Plasma/PubUtilLib/plNetClient/plNetCliAgeJoiner.cpp

@ -190,6 +190,8 @@ void plNCAgeJoiner::IResMgrProgressBarCallback (plKey key) {
if (s_instance)
s_instance->progressBar->SetStatusText(key->GetName());
#endif
if (s_instance)
s_instance->progressBar->Increment(1);
}
//============================================================================

Loading…
Cancel
Save