#include "game_types.h"

/* Script_ReadByte47 @ 0x08014D80 (real 18B) -- reads script byte into field 47, advances cursor. Mirrors src/matched/Script_ReadByte47.c. */
/* Reads the byte under the cursor into field 47, then advances the cursor. */
void Script_ReadByte47(char *st)
{
    unsigned char **cursor = (unsigned char **)(st + 64);
    unsigned char *p = *cursor;
    st[47] = (char)*p;
    *cursor = p + 1;
}
