blob: 5b48713bf8c1196b8f37a02873484605851a6b70 (
plain)
1
2
3
4
5
6
7
|
// Scene files are reordered between versions. On GameCube and iQue, dungeon scenes
// have been moved to the beginning.
#if PLATFORM_N64
#include "scenes_n64.inc"
#else
#include "scenes_gc_ique.inc"
#endif
|