#include "game_types.h"

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