- [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:
2025-11-18 08:47:22 +01:00
parent 8028d0533b
commit 9eae2aa785
2 changed files with 3 additions and 3 deletions

View File

@@ -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 );

View File

@@ -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;
} }
} }