aboutsummaryrefslogtreecommitdiff
path: root/src/wii/system.c
blob: d28c5e1f61d6f8186cbfc56df7cb6191f985c86a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "system.h"
#include <gccore.h>
#include <stdio.h>
#include <stdlib.h>

int quitGame = 0;

int PHL_MainLoop()
{
	if (quitGame == 1) {
		return 0;
	}
	return 1;
}

void PHL_ConsoleInit()
{
	//console_init(xfb,20,20,rmode->fbWidth,rmode->xfbHeight,rmode->fbWidth*VI_DISPLAY_PIX_SZ);
}

void PHL_GameQuit()
{
	quitGame = 1;
}

void PHL_ErrorScreen(char* message)
{
	/*consoleInit(GFX_TOP, NULL);
	
	printf(message);
	printf("\n\nPress START to close");
	
	u32 kDown;
	while (PHL_MainLoop()) {
		//gfxFlushBuffers();
		//gfxSwapBuffers();
		hidScanInput();
		kDown = hidKeysHeld();
		
		if (kDown & KEY_START) { break; } 
		
		gspWaitForVBlank();
	}
	*/
	
	exit(1);
}