#include "game_types.h"

/* Sub_08004768 @ 0x08004768 (real 26B) -- tests whether either of the first two words is nonzero. Mirrors src/matched/Sub_08004768.c. */
/* Returns whether word 0 or word 1 of the object is nonzero. */
int Sub_08004768(int *p)
{
    return p[1] != 0 || p[0] != 0;
}
