mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-02-12 01:48:51 +01:00
![Wiseguy](/assets/img/avatar_default.png)
This commit updates the runtime for function hooking and implements any recomp-side functionality needed for them to fully hook (namely ROM decompression). For more details, see the relevant N64Recomp and N64ModernRuntime PRs.
15 lines
271 B
C++
15 lines
271 B
C++
#ifndef __ZELDA_GAME_H__
|
|
#define __ZELDA_GAME_H__
|
|
|
|
#include <cstdint>
|
|
#include <span>
|
|
#include <vector>
|
|
|
|
namespace zelda64 {
|
|
void quicksave_save();
|
|
void quicksave_load();
|
|
std::vector<uint8_t> decompress_mm(std::span<const uint8_t> compressed_rom);
|
|
};
|
|
|
|
#endif
|