mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
Merge pull request #88 from Yanis42/disable_nosyncs
Avoid disabling no syncs in texture load
This commit is contained in:
@@ -54,7 +54,7 @@
|
||||
|
||||
/**** [MAP SELECT] ****/
|
||||
// ``IS_MAP_SELECT_ENABLED``
|
||||
#define ENABLE_MAP_SELECT false
|
||||
#define ENABLE_MAP_SELECT true
|
||||
|
||||
/**** [DEBUG FILE 1] ****/
|
||||
// ``IS_DEBUG_SAVE_ENABLED``
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
#define ENABLE_F3DEX3 true
|
||||
#define ENABLE_F3DEX3_RECOMMENDATIONS true // missing matrix stuff + fast64 re-export process
|
||||
#define ENABLE_F3DEX3_NOSYNCS false // not working properly currently
|
||||
#define ENABLE_F3DEX3_LIGHT_RECO false // unfinished, faster but experimental (reco -> recommendations)
|
||||
// #define ENABLE_F3DEX3_NEW_FEATURES true // not implemented yet
|
||||
|
||||
|
||||
@@ -107,14 +107,21 @@
|
||||
/*****************
|
||||
* config_game.h
|
||||
*/
|
||||
#if !ENABLE_F3DEX3 && ENABLE_F3DEX3_RECOMMENDATIONS
|
||||
#undef ENABLE_F3DEX3_RECOMMENDATIONS
|
||||
#define ENABLE_F3DEX3_RECOMMENDATIONS false
|
||||
#endif
|
||||
#if !ENABLE_F3DEX3
|
||||
#if ENABLE_F3DEX3_RECOMMENDATIONS
|
||||
#undef ENABLE_F3DEX3_RECOMMENDATIONS
|
||||
#define ENABLE_F3DEX3_RECOMMENDATIONS false
|
||||
#endif
|
||||
|
||||
#if !ENABLE_F3DEX3 && ENABLE_F3DEX3_NEW_FEATURES
|
||||
#undef ENABLE_F3DEX3_NEW_FEATURES
|
||||
#define ENABLE_F3DEX3_NEW_FEATURES false
|
||||
#if ENABLE_F3DEX3_NEW_FEATURES
|
||||
#undef ENABLE_F3DEX3_NEW_FEATURES
|
||||
#define ENABLE_F3DEX3_NEW_FEATURES false
|
||||
#endif
|
||||
|
||||
#if ENABLE_F3DEX3_NOSYNCS
|
||||
#undef ENABLE_F3DEX3_NOSYNCS
|
||||
#define ENABLE_F3DEX3_NOSYNCS false
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if FORCE_WIDESCREEN
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
#if ENABLE_F3DEX3
|
||||
#define REQUIRE_SEMICOLONS_AFTER_GBI_COMMANDS
|
||||
#if ENABLE_F3DEX3_RECOMMENDATIONS
|
||||
#if ENABLE_F3DEX3_NOSYNCS
|
||||
#define NO_SYNCS_IN_TEXTURE_LOADS
|
||||
#endif
|
||||
#include "gbi.f3dex3.h"
|
||||
|
||||
Reference in New Issue
Block a user