Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 19, 2015
1 parent c910e10 commit c94fe24
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions doomsday/apps/client/src/busyrunner.cpp
Expand Up @@ -30,7 +30,6 @@
#include "ui/busyvisual.h"
#include "ui/widgets/busywidget.h"
#include "ui/clientwindow.h"
#include "ui/clientwindowsystem.h"
#include "ui/progress.h"

#include <doomsday/doomsdayapp.h>
Expand Down Expand Up @@ -94,7 +93,7 @@ DENG2_PIMPL_NOREF(BusyRunner)
ClientApp::app().loop().setRate(60);

// Switch the window to busy mode UI.
ClientWindowSystem::main().setMode(ClientWindow::Busy);
ClientWindow::main().setMode(ClientWindow::Busy);
}

void busyModeEnded()
Expand All @@ -108,7 +107,7 @@ DENG2_PIMPL_NOREF(BusyRunner)
ClientApp::app().loop().setRate(0);

// Switch the window to normal UI.
ClientWindowSystem::main().setMode(ClientWindow::Normal);
ClientWindow::main().setMode(ClientWindow::Normal);
}

void busyTaskWillStart(BusyTask &task)
Expand Down Expand Up @@ -228,7 +227,7 @@ void BusyRunner::loop()

if(canUpload)
{
ClientWindowSystem::main().glActivate();
ClientWindow::main().glActivate();

// Any deferred content needs to get uploaded.
GL_ProcessDeferredTasks(15);
Expand Down

0 comments on commit c94fe24

Please sign in to comment.