Remove embedding of colors.txt in executable

This commit is contained in:
ShadowNinja
2014-03-28 17:40:00 -04:00
parent 5905c34ec0
commit ac04a7bc8a
4 changed files with 0 additions and 29 deletions

View File

@ -22,7 +22,6 @@
#include "PlayerAttributes.h"
#include "TileGenerator.h"
#include "ZlibDecompressor.h"
#include "colors.h"
#include "db-sqlite3.h"
#if USE_LEVELDB
#include "db-leveldb.h"
@ -117,9 +116,6 @@ TileGenerator::TileGenerator():
m_geomX2(INT_MAX),
m_geomY2(INT_MAX)
{
string colors_txt_data(reinterpret_cast<char *>(colors_txt), colors_txt_len);
istringstream colors_stream(colors_txt_data);
parseColorsStream(colors_stream);
}
TileGenerator::~TileGenerator()