#include "game_types.h"

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