1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-04 23:17:41 +02:00

* warning fixed (use of an uninitialized variable)

This commit is contained in:
mateuszb 2010-02-05 10:54:59 +00:00
parent 9bfe9c476d
commit 5fe80d89ef

View File

@ -616,7 +616,7 @@ void Graphics::blueToPlayersAdv(SDL_Surface * sur, int player)
void Graphics::loadTrueType() void Graphics::loadTrueType()
{ {
bool ttfPresent;//was TTF initialised or not bool ttfPresent = false;//was TTF initialised or not
for(int i = 0; i < FONTS_NUMBER; i++) for(int i = 0; i < FONTS_NUMBER; i++)
fontsTrueType[i] = NULL; fontsTrueType[i] = NULL;
std::ifstream ff(DATA_DIR "/config/fonts.txt"); std::ifstream ff(DATA_DIR "/config/fonts.txt");