Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 27, 2016
1 parent 577a1fd commit ecce45a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doomsday/apps/libdoomsday/src/filesys/fs_scheme.cpp
Expand Up @@ -218,7 +218,7 @@ struct FS1::Scheme::Instance
void addFromSearchPaths(FS1::PathGroup group)
{
for (FS1::Scheme::SearchPaths::const_iterator i = searchPaths.find(group);
i != searchPaths.end() && i.key() == group; ++i)
i != searchPaths.end() && i.key() == group; ++i)
{
addFromSearchPath(*i);
}
Expand Down Expand Up @@ -434,8 +434,8 @@ bool FS1::Scheme::addSearchPath(SearchPath const &search, FS1::PathGroup group)

// Ensure this is a well formed path.
if (search.isEmpty() ||
!search.path().toString().compareWithoutCase("/") ||
!search.path().toString().endsWith("/"))
!search.path().toString().compareWithoutCase("/") ||
!search.path().toString().endsWith("/"))
return false;

// The addition of a new search path means the scheme is now dirty.
Expand Down
4 changes: 2 additions & 2 deletions doomsday/apps/libdoomsday/src/games.cpp
Expand Up @@ -122,9 +122,9 @@ DENG2_PIMPL(Games)
return nullptr;
}

void dataBundlesIdentified(bool wereIdentified)
void dataBundlesIdentified(bool)
{
if (/*wereIdentified && */!mainCall)
if (!mainCall)
{
mainCall.enqueue([this] () { self.checkReadiness(); });
}
Expand Down

0 comments on commit ecce45a

Please sign in to comment.