You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
* add config define to skip file select * implement file select skip * Add more coverage to the skip file select tweak --------- Co-authored-by: someone2639 <someone2639@gmail.com>
26 lines
392 B
C
26 lines
392 B
C
#pragma once
|
|
|
|
/*********************
|
|
* CUTSCENE SETTINGS *
|
|
*********************/
|
|
|
|
/************************
|
|
* -- CUTSCENE SKIPS -- *
|
|
************************/
|
|
|
|
/**
|
|
* Skips the peach letter cutscene.
|
|
*/
|
|
#define PEACH_SKIP
|
|
|
|
/**
|
|
* Skips the title/splash screen (Super Mario 64 logo).
|
|
*/
|
|
// #define SKIP_TITLE_SCREEN
|
|
|
|
/**
|
|
* Skips the File Select screen
|
|
*/
|
|
// #define SKIP_FILE_SELECT
|
|
|