#include "game_types.h"

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