CGE2: Fix GCC warning

This commit is contained in:
Strangerke 2014-07-02 01:33:37 +02:00
parent 7810df976b
commit b48c94a541

View File

@ -30,7 +30,7 @@
namespace CGE2 {
void Spare::sync(Common::Serializer &s) {
for (int i = 0; i < _container.size(); i++)
for (uint i = 0; i < _container.size(); i++)
_container[i]->sync(s);
}