Fixed an uppercase path potential problem

This commit is contained in:
Xawotihs
2012-01-07 21:00:37 +00:00
parent 26738af904
commit a0019a13d0

View File

@@ -77,7 +77,7 @@ bool Unlockable::tryToUnlock(GameObserver * game) {
void Unlockable::load()
{
std::string contents;
if (! JFileSystem::GetInstance()->readIntoString("Rules/awards.dat", contents))
if (! JFileSystem::GetInstance()->readIntoString("rules/awards.dat", contents))
return;
std::stringstream stream(contents);