Skip to content

Commit

Permalink
Fixed: Problem with previous commit
Browse files Browse the repository at this point in the history
Apparently appending a slash isn't tolerated in this case.
  • Loading branch information
skyjake committed Nov 18, 2012
1 parent 5aed554 commit d1aa45c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/engine/src/filesys/fs_main.cpp
Expand Up @@ -1302,7 +1302,8 @@ de::FS1* App_FileSystem()

de::String App_BasePath()
{
return de::App::app().nativeBasePath().withSeparators('/') + '/';
/// @todo Shouldn't this end in '/'? It causes failure to locate doomsday.pk3...
return de::App::app().nativeBasePath().withSeparators('/'); // + '/';
}

void F_Register(void)
Expand Down

0 comments on commit d1aa45c

Please sign in to comment.