mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-05 22:35:06 +01:00
3c34fa63c1
* Added analog cam and camera inversion options to menu, initial implementation of analog cam * Automatically suppress inputs on the right stick while analog cam is active * Return to automatic camera mode when pressing target * Add aiming inversion options * Add analog camera inversion options
15 lines
411 B
C
15 lines
411 B
C
#ifndef __PLAY_PATCHES_H__
|
|
#define __PLAY_PATCHES_H__
|
|
|
|
#include "patches.h"
|
|
|
|
void debug_play_update(PlayState* play);
|
|
void camera_pre_play_update(PlayState* play);
|
|
void camera_post_play_update(PlayState* play);
|
|
void analog_cam_pre_play_update(PlayState* play);
|
|
void analog_cam_post_play_update(PlayState* play);
|
|
void matrix_play_update(PlayState* play);
|
|
void autosave_post_play_update(PlayState* play);
|
|
|
|
#endif
|