27 lines
547 B
C
27 lines
547 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "systemdolphin.h"
|
|
#include "input/input.h"
|
|
#include "util/string.h"
|
|
#include "assert/assert.h"
|
|
|
|
errorret_t systemInitDolphin(void) {
|
|
errorOk();
|
|
}
|
|
|
|
systemdialogtype_t systemGetActiveDialogTypeDolphin(void) {
|
|
return SYSTEM_DIALOG_TYPE_NONE;
|
|
}
|
|
|
|
int32_t systemGetAspectRatioDolphin(void) {
|
|
return CONF_GetAspectRatio();
|
|
}
|
|
|
|
int32_t systemGetLanguageDolphin(void) {
|
|
return CONF_GetLanguage();
|
|
} |