Skip to content

Commit

Permalink
Client: Locating game resources is no longer necessary
Browse files Browse the repository at this point in the history
We already know which data files are available.
  • Loading branch information
skyjake committed Jan 23, 2016
1 parent 7b26f8d commit debc02a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doomsday/apps/client/src/dd_main.cpp
Expand Up @@ -1019,7 +1019,7 @@ static void initialize()
#ifdef __CLIENT__
Con_InitProgress2(200, .25f, 1); // Second half.
#endif
App_Games().locateAllResources();
App_Games().checkReadiness();

// Attempt automatic game selection.
if(!CommandLine_Exists("-noautoselect") || isDedicated)
Expand Down
3 changes: 1 addition & 2 deletions doomsday/apps/client/src/ui/widgets/taskbarwidget.cpp
Expand Up @@ -744,8 +744,7 @@ void TaskBarWidget::chooseIWADFolder()
ClientWindow::main().console().closeLogAndUnfocusCommandLine();

Con_InitProgress(200);
App_Games().forgetAllResources();
App_Games().locateAllResources();
App_Games().checkReadiness();
}
}

Expand Down

0 comments on commit debc02a

Please sign in to comment.