22 lines
437 B
C
22 lines
437 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ogcsys.h>
|
|
#include <gccore.h>
|
|
#include <malloc.h>
|
|
|
|
#define consoleInit consoleInitDolhpin
|
|
|
|
#ifdef DUSK_GAMECUBE
|
|
#define CONF_ASPECT_4_3 0
|
|
#define CONF_ASPECT_16_9 1
|
|
#define CONF_GetAspectRatio() CONF_ASPECT_4_3
|
|
|
|
#define CONF_GetLanguage() SYS_GetLanguage()
|
|
#endif |