#include <stdlib.h>

#include "Popcorn:h.Popcorn"

void Popcorn_LoseGroup(int group)
{
  int c=0;

  while (c != resource_free)
  {
    if (resource[c]->group == group)
    {
      free(resource[c]->addr);
      resource[c]->addr = NULL;
    }
    c++;
  }
}
