Compare commits
No commits in common. "839200b71736b1d9b2da57fc57b3a447006d105a" and "a80bd84a4a04821ef126a07666b187b7c1ad08ef" have entirely different histories.
839200b717
...
a80bd84a4a
2
lib/rt64
2
lib/rt64
|
@ -1 +1 @@
|
|||
Subproject commit 0fd6d05b8a0ec5daae313ad9e8504812ec31775d
|
||||
Subproject commit ec511c99d266bd6b7c770c36ca6c025b306d481c
|
|
@ -28,6 +28,10 @@
|
|||
#include "ovl_patches.hpp"
|
||||
#include "librecomp/game.hpp"
|
||||
|
||||
#ifdef HAS_MM_SHADER_CACHE
|
||||
#include "mm_shader_cache.h"
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <Windows.h>
|
||||
|
@ -321,12 +325,18 @@ RspUcodeFunc* get_rsp_microcode(const OSTask* task) {
|
|||
extern "C" void recomp_entrypoint(uint8_t * rdram, recomp_context * ctx);
|
||||
gpr get_entrypoint_address();
|
||||
|
||||
// TODO DO NOT MERGE THIS BRANCH WITHOUT REENABLING THE SHADER CACHE
|
||||
#undef HAS_MM_SHADER_CACHE
|
||||
|
||||
// array of supported GameEntry objects
|
||||
std::vector<recomp::GameEntry> supported_games = {
|
||||
{
|
||||
.rom_hash = 0xEF18B4A9E2386169ULL,
|
||||
.internal_name = "ZELDA MAJORA'S MASK",
|
||||
.game_id = u8"mm.n64.us.1.0",
|
||||
#ifdef HAS_MM_SHADER_CACHE
|
||||
.cache_data = {mm_shader_cache_bytes, sizeof(mm_shader_cache_bytes)},
|
||||
#endif
|
||||
.is_enabled = true,
|
||||
.entrypoint_address = get_entrypoint_address(),
|
||||
.entrypoint = recomp_entrypoint,
|
||||
|
|
Loading…
Reference in New Issue