mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
30e839c28b
* d_s_room / d_s_name debug work * camera_class rtti fix * d_a_title debug / handle shield rel changes * fix shield build * fix regressions
21 lines
494 B
C
21 lines
494 B
C
#ifndef DOLZEL_REL_H
|
|
#define DOLZEL_REL_H
|
|
|
|
// Shield versions move some RELs into the DOL, so need a way to switch which
|
|
// precompiled headers are being used depending on some variable
|
|
#if __FORCE_REL_IN_DOL__
|
|
#if __MWERKS__ && !defined(DECOMPCTX)
|
|
#include "d/dolzel.mch"
|
|
#else
|
|
#include "d/dolzel.pch"
|
|
#endif
|
|
#else
|
|
#if __MWERKS__ && !defined(DECOMPCTX)
|
|
#include "d/dolzel_rel.mch"
|
|
#else
|
|
#include "d/dolzel_rel.pch"
|
|
#endif
|
|
#endif
|
|
|
|
#endif // DOLZEL_REL_H
|