mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 18:04:09 +03:00
Make obj.customcollect a vector of bools
It's already treated as a vector of bools, so might as well formally declare it as that.
This commit is contained in:
@@ -1469,7 +1469,7 @@ void scriptclass::run()
|
||||
for (i = 0; i < 100; i++)
|
||||
{
|
||||
obj.collect[i] = false;
|
||||
obj.customcollect[i] = 0;
|
||||
obj.customcollect[i] = false;
|
||||
}
|
||||
game.deathcounts = 0;
|
||||
game.advancetext = false;
|
||||
@@ -3561,7 +3561,7 @@ void scriptclass::hardreset()
|
||||
for (i = 0; i < 100; i++)
|
||||
{
|
||||
obj.collect[i] = false;
|
||||
obj.customcollect[i] = 0;
|
||||
obj.customcollect[i] = false;
|
||||
}
|
||||
|
||||
if (obj.getplayer() > -1){
|
||||
|
||||
Reference in New Issue
Block a user