mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-14 18:15:28 -04:00
Consoles: Add exit button to bottom right of launcher menu
This commit is contained in:
parent
5e5b4680e4
commit
d1320bd2c9
@ -886,6 +886,12 @@ static void MainScreen_ApplyUpdateLabel(struct MainScreen* s) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CC_BUILD_CONSOLE
|
||||||
|
static void MainScreen_ExitApp(void* w) {
|
||||||
|
Window_Main.Exists = false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void MainScreen_Activated(struct LScreen* s_) {
|
static void MainScreen_Activated(struct LScreen* s_) {
|
||||||
struct MainScreen* s = (struct MainScreen*)s_;
|
struct MainScreen* s = (struct MainScreen*)s_;
|
||||||
|
|
||||||
@ -909,8 +915,6 @@ static void MainScreen_Activated(struct LScreen* s_) {
|
|||||||
SwitchToSplitScreen, main_btnSplit);
|
SwitchToSplitScreen, main_btnSplit);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
LLabel_Add(s, &s->lblUpdate, "&eChecking..",
|
|
||||||
Updater_Supported ? main_lblUpdate_N : main_lblUpdate_H);
|
|
||||||
if (Process_OpenSupported) {
|
if (Process_OpenSupported) {
|
||||||
LButton_Add(s, &s->btnRegister, 100, 35, "Register",
|
LButton_Add(s, &s->btnRegister, 100, 35, "Register",
|
||||||
MainScreen_Register, main_btnRegister);
|
MainScreen_Register, main_btnRegister);
|
||||||
@ -918,10 +922,19 @@ static void MainScreen_Activated(struct LScreen* s_) {
|
|||||||
|
|
||||||
LButton_Add(s, &s->btnOptions, 100, 35, "Options",
|
LButton_Add(s, &s->btnOptions, 100, 35, "Options",
|
||||||
SwitchToSettings, main_btnOptions);
|
SwitchToSettings, main_btnOptions);
|
||||||
|
|
||||||
|
#ifdef CC_BUILD_CONSOLE
|
||||||
|
LLabel_Add(s, &s->lblUpdate, "&eChecking..", main_lblUpdate_N);
|
||||||
|
LButton_Add(s, &s->btnUpdates, 100, 35, "Exit",
|
||||||
|
MainScreen_ExitApp, main_btnUpdates);
|
||||||
|
#else
|
||||||
|
LLabel_Add(s, &s->lblUpdate, "&eChecking..",
|
||||||
|
Updater_Supported ? main_lblUpdate_N : main_lblUpdate_H);
|
||||||
if (Updater_Supported) {
|
if (Updater_Supported) {
|
||||||
LButton_Add(s, &s->btnUpdates, 100, 35, "Updates",
|
LButton_Add(s, &s->btnUpdates, 100, 35, "Updates",
|
||||||
SwitchToUpdates, main_btnUpdates);
|
SwitchToUpdates, main_btnUpdates);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
s->btnResume.OnHover = MainScreen_ResumeHover;
|
s->btnResume.OnHover = MainScreen_ResumeHover;
|
||||||
s->btnResume.OnUnhover = MainScreen_ResumeUnhover;
|
s->btnResume.OnUnhover = MainScreen_ResumeUnhover;
|
||||||
|
@ -189,7 +189,7 @@ cc_result File_Length(cc_file file, cc_uint32* len) {
|
|||||||
*len = st.st_size; return 0;
|
*len = st.st_size; return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void InitFilesystem(cc_bool dsiMode) {
|
static void InitFilesystem(void) {
|
||||||
char* dir = fatGetDefaultCwd();
|
char* dir = fatGetDefaultCwd();
|
||||||
if (dir && dir[0]) {
|
if (dir && dir[0]) {
|
||||||
root_path.buffer = dir;
|
root_path.buffer = dir;
|
||||||
@ -199,7 +199,7 @@ static void InitFilesystem(cc_bool dsiMode) {
|
|||||||
// I don't know why I have to call this function, but if I don't,
|
// I don't know why I have to call this function, but if I don't,
|
||||||
// then when running in DSi mode AND an SD card is readable,
|
// then when running in DSi mode AND an SD card is readable,
|
||||||
// fatInitDefault gets stuck somewhere (in disk_initialize it seems)
|
// fatInitDefault gets stuck somewhere (in disk_initialize it seems)
|
||||||
if (dsiMode) {
|
if (isDSiMode()) {
|
||||||
const DISC_INTERFACE* sd_io = get_io_dsisd();
|
const DISC_INTERFACE* sd_io = get_io_dsisd();
|
||||||
if (sd_io) sd_io->startup();
|
if (sd_io) sd_io->startup();
|
||||||
}
|
}
|
||||||
@ -404,10 +404,7 @@ static void InitNetworking(void) {
|
|||||||
*--------------------------------------------------------Platform---------------------------------------------------------*
|
*--------------------------------------------------------Platform---------------------------------------------------------*
|
||||||
*#########################################################################################################################*/
|
*#########################################################################################################################*/
|
||||||
void Platform_Init(void) {
|
void Platform_Init(void) {
|
||||||
cc_bool dsiMode = isDSiMode();
|
InitFilesystem();
|
||||||
Platform_Log1("Running in %c mode", dsiMode ? "DSi" : "DS");
|
|
||||||
|
|
||||||
InitFilesystem(dsiMode);
|
|
||||||
InitNetworking();
|
InitNetworking();
|
||||||
|
|
||||||
cpuStartTiming(1);
|
cpuStartTiming(1);
|
||||||
|
@ -725,10 +725,8 @@ static void TouchScreen_LayoutOnscreen(struct TouchScreen* s, cc_uint8 alignment
|
|||||||
static void TouchScreen_Layout(void* screen) {
|
static void TouchScreen_Layout(void* screen) {
|
||||||
struct TouchScreen* s = (struct TouchScreen*)screen;
|
struct TouchScreen* s = (struct TouchScreen*)screen;
|
||||||
const struct TouchButtonDesc* desc;
|
const struct TouchButtonDesc* desc;
|
||||||
int haligns = GetOnscreenHAligns();
|
|
||||||
float scale = Gui.RawTouchScale;
|
float scale = Gui.RawTouchScale;
|
||||||
cc_uint8 halign;
|
int i, height;
|
||||||
int i, x, y, height;
|
|
||||||
|
|
||||||
/* Need to align these relative to the hotbar */
|
/* Need to align these relative to the hotbar */
|
||||||
height = HUDScreen_LayoutHotbar();
|
height = HUDScreen_LayoutHotbar();
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include <nds/arm9/input.h>
|
#include <nds/arm9/input.h>
|
||||||
#include <nds/arm9/keyboard.h>
|
#include <nds/arm9/keyboard.h>
|
||||||
#include <nds/interrupts.h>
|
#include <nds/interrupts.h>
|
||||||
|
#include <nds/system.h>
|
||||||
|
|
||||||
|
|
||||||
/*########################################################################################################################*
|
/*########################################################################################################################*
|
||||||
@ -151,6 +152,9 @@ void Window_Init(void) {
|
|||||||
vramSetBankI(VRAM_I_SUB_BG_0x06208000);
|
vramSetBankI(VRAM_I_SUB_BG_0x06208000);
|
||||||
setBrightness(2, 0);
|
setBrightness(2, 0);
|
||||||
consoleInit();
|
consoleInit();
|
||||||
|
|
||||||
|
cc_bool dsiMode = isDSiMode();
|
||||||
|
Platform_Log1("Running in %c mode", dsiMode ? "DSi" : "DS");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window_Free(void) { }
|
void Window_Free(void) { }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user