#include "game_types.h"

/* Sub_0800C968 @ 0x0800C968 (real 42B) -- initializes a 5-word block with -1 pattern, twice. Mirrors src/matched/Sub_0800C968.c. */
/* Writes (0, -1, 0, -1, 0) into words 0-4, clears byte 2080, then repeats
   the 5-word pattern (redundant second round is verbatim). */
void Sub_0800C968(int *p)
{
    p[0] = 0;
    p[1] = -1;
    p[2] = 0;
    p[3] = -1;
    p[4] = 0;
    ((char *)p)[2080] = 0;
    p[0] = 0;
    p[1] = -1;
    p[2] = 0;
    p[3] = -1;
    p[4] = 0;
}
