Remove gfx API (#7)

these API was removed in current libnx dev tree
This commit is contained in:
Sunguk Lee 2019-01-09 04:18:04 +09:00 committed by Joel
parent dbd086d069
commit bda82998b0

View File

@ -75,7 +75,6 @@ static void SwitchIdent_TermServices(void) {
}
int main(int argc, char **argv) {
gfxInitDefault();
consoleInit(NULL);
SwitchIdent_InitServices();
@ -175,12 +174,11 @@ int main(int argc, char **argv) {
if (kDown & KEY_PLUS)
break; // break in order to return to hbmenu
gfxFlushBuffers();
gfxSwapBuffers();
gfxWaitForVsync();
consoleUpdate(NULL);
}
SwitchIdent_TermServices();
gfxExit();
consoleExit(NULL);
return 0;
}