- [FIX] uint a unsigned int per als compiladors quisquillosos
- [FIX] return true en funcions inacabades, per als mateixos de dalt
This commit is contained in:
@@ -71,7 +71,7 @@ namespace file
|
|||||||
fi.read((char*)&toc_offset, 4);
|
fi.read((char*)&toc_offset, 4);
|
||||||
fi.seekg(toc_offset);
|
fi.seekg(toc_offset);
|
||||||
|
|
||||||
for (uint i=0; i<num_files; ++i)
|
for (unsigned int i=0; i<num_files; ++i)
|
||||||
{
|
{
|
||||||
uint32_t file_offset, file_size;
|
uint32_t file_offset, file_size;
|
||||||
fi.read( (char*)&file_offset, 4 );
|
fi.read( (char*)&file_offset, 4 );
|
||||||
|
|||||||
@@ -15,12 +15,12 @@ namespace toolbar
|
|||||||
|
|
||||||
bool button(SDL_Texture* surf, const int sx, const int sy)
|
bool button(SDL_Texture* surf, const int sx, const int sy)
|
||||||
{
|
{
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool pushbutton(SDL_Texture* surf, const int sx, const int sy, const bool pushed)
|
bool pushbutton(SDL_Texture* surf, const int sx, const int sy, const bool pushed)
|
||||||
{
|
{
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user