mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-04 22:14:25 +02:00
Fixed a few warnings.
This commit is contained in:
parent
29045f5c0f
commit
c84c9cb481
@ -218,7 +218,7 @@ void CConsoleHandler::end()
|
|||||||
{
|
{
|
||||||
if (thread) {
|
if (thread) {
|
||||||
ThreadHandle th = (ThreadHandle)thread->native_handle();
|
ThreadHandle th = (ThreadHandle)thread->native_handle();
|
||||||
int ret = _kill_thread(th);
|
_kill_thread(th);
|
||||||
thread->join();
|
thread->join();
|
||||||
delete thread;
|
delete thread;
|
||||||
thread = NULL;
|
thread = NULL;
|
||||||
|
@ -80,7 +80,7 @@ bool CArtifact::fitsAt (const std::map<ui16, ui32> &artifWorn, ui16 slotID) cons
|
|||||||
|
|
||||||
if (slot == 6 || slot == 7)
|
if (slot == 6 || slot == 7)
|
||||||
rings++;
|
rings++;
|
||||||
else if (slot >= 9 && slot <= 12 || slot == 18)
|
else if ((slot >= 9 && slot <= 12) || slot == 18)
|
||||||
misc++;
|
misc++;
|
||||||
else if (tempArtifWorn.find(slot) != tempArtifWorn.end())
|
else if (tempArtifWorn.find(slot) != tempArtifWorn.end())
|
||||||
return false;
|
return false;
|
||||||
|
@ -48,7 +48,6 @@ static CBuilding * readBg(std::string &buf, int& it)
|
|||||||
void CBuildingHandler::loadBuildings()
|
void CBuildingHandler::loadBuildings()
|
||||||
{
|
{
|
||||||
std::string buf = bitmaph->getTextFile("BUILDING.TXT"), temp;
|
std::string buf = bitmaph->getTextFile("BUILDING.TXT"), temp;
|
||||||
unsigned int andame = buf.size();
|
|
||||||
int it=0; //buf iterator
|
int it=0; //buf iterator
|
||||||
|
|
||||||
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//read 2 lines of file info
|
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//read 2 lines of file info
|
||||||
|
@ -6,7 +6,13 @@
|
|||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
#include <boost/version.hpp>
|
||||||
|
#if BOOST_VERSION >= 103800
|
||||||
|
#include <boost/spirit/include/classic.hpp>
|
||||||
|
#else
|
||||||
#include <boost/spirit.hpp>
|
#include <boost/spirit.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
using namespace boost::spirit;
|
using namespace boost::spirit;
|
||||||
|
|
||||||
extern CLodHandler * bitmaph;
|
extern CLodHandler * bitmaph;
|
||||||
@ -217,7 +223,6 @@ void CHeroHandler::loadPuzzleInfo()
|
|||||||
void CHeroHandler::loadHeroes()
|
void CHeroHandler::loadHeroes()
|
||||||
{
|
{
|
||||||
VLC->heroh = this;
|
VLC->heroh = this;
|
||||||
int ID=0;
|
|
||||||
std::string buf = bitmaph->getTextFile("HOTRAITS.TXT");
|
std::string buf = bitmaph->getTextFile("HOTRAITS.TXT");
|
||||||
int it=0;
|
int it=0;
|
||||||
std::string dump;
|
std::string dump;
|
||||||
|
@ -108,7 +108,7 @@ unsigned char * CLodHandler::giveFile(std::string defName, int * length)
|
|||||||
LOD.read((char*)outp, ourEntry->size);
|
LOD.read((char*)outp, ourEntry->size);
|
||||||
mutex->unlock();
|
mutex->unlock();
|
||||||
unsigned char * decomp = NULL;
|
unsigned char * decomp = NULL;
|
||||||
int decRes = infs2(outp, ourEntry->size, ourEntry->realSize, decomp);
|
infs2(outp, ourEntry->size, ourEntry->realSize, decomp);
|
||||||
delete[] outp;
|
delete[] outp;
|
||||||
return decomp;
|
return decomp;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user