1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-15 00:05:02 +02:00

Work with full file paths instead of partial ones.

This commit is contained in:
Frank Zago
2009-10-10 01:42:33 +00:00
parent 1392df17dc
commit 668b203486
5 changed files with 11 additions and 19 deletions

View File

@ -541,7 +541,7 @@ void YourTurn::applyCl( CClient *cl )
void SaveGame::applyCl(CClient *cl)
{
CSaveFile save("Games/" + fname + ".vcgm1");
CSaveFile save(DATA_DIR "/Games/" + fname + ".vcgm1");
save << *cl;
}