1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

One more compile fix, works now fine on Windows.

This commit is contained in:
DjWarmonger 2013-07-29 12:15:50 +00:00
parent 77496bcea9
commit d8594576e2

View File

@ -425,7 +425,7 @@ bool CVideoPlayer::open(std::string name)
std::ofstream out(name, std::ofstream::binary);
out.exceptions(std::ifstream::failbit | std::ifstream::badbit);
out.write(data.first.get(), data.second);
out.write(reinterpret_cast<char*>(data.first.get()), data.second);
}
current->open(name);