fs2port/port/include/ovlLogDisk.h

16 lines
404 B
C

// FS2.1 file section $42 (src/ovl42.s): the Ctrl+E "scenery disk log"
// overlay, a message page shown until a key is pressed. Loaded by
// LoadSceneryFile4 and entered through the LogSceneryDisk slot it
// rewrites to `jmp $A86A`.
#ifndef OVL_LOG_DISK_H
#define OVL_LOG_DISK_H
#include <stdbool.h>
#define OVL_LOG_DISK_ENTRY 0xA86A
bool ovlLogDiskIsLoaded(void);
void ovlLogDiskShow(void);
#endif