fixed incorrect path when loading settings.

This commit is contained in:
rachytski 2012-04-17 18:14:12 +04:00 committed by Alex Zolotarev
parent 465184b9d8
commit a6b2528084

View file

@ -6,6 +6,7 @@
#include "../coding/reader_streambuf.hpp"
#include "../coding/file_writer.hpp"
#include "../coding/file_reader.hpp"
#include "../geometry/rect2d.hpp"
#include "../geometry/any_rect2d.hpp"
@ -24,7 +25,7 @@ namespace Settings
{
try
{
ReaderStreamBuf buffer(GetPlatform().GetReader(SETTINGS_FILE_NAME));
ReaderStreamBuf buffer(new FileReader(GetPlatform().SettingsPathForFile(SETTINGS_FILE_NAME)));
istream stream(&buffer);
string line;