mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-23 16:45:12 -04:00
c40bb119e1
* 1 scene done, Z2_SOUGEN OK * All scenes OK * Makefile improvements * Use WIP ZAPD branch as submodule * Add spawn rotation flag macro * Fix bad merge * Move scenes to be in their own subfolders * Rename and restructure extracted baserom files * Progress tracking for assets * Add asset progress to csv * Use master ZAPD * Use distclean like in OOT * Fix up a few things with the makefile * Fix scenes not being dumped from ELF Co-authored-by: Rozelette <Uberpanzermensch@gmail.com>
22 lines
398 B
C
22 lines
398 B
C
#ifndef _Z64CUTSCENE_COMMANDS_H_
|
|
#define _Z64CUTSCENE_COMMANDS_H_
|
|
|
|
#include "command_macros_base.h"
|
|
#include "z64cutscene.h"
|
|
|
|
/**
|
|
* ARGS
|
|
* s32 totalEntries (e), s32 endFrame (n)
|
|
* FORMAT
|
|
* eeeeeeee nnnnnnnn
|
|
* size = 0x8
|
|
*/
|
|
#define CS_BEGIN_CUTSCENE(totalEntries, endFrame) CMD_W(totalEntries), CMD_W(endFrame)
|
|
|
|
/**
|
|
* Marks the end of a cutscene
|
|
*/
|
|
#define CS_END() 0xFFFFFFFF
|
|
|
|
#endif
|