Imported ret2hbmenu comment from 3ds-examples.

This commit is contained in:
yellows8 2018-02-18 12:30:25 -05:00
parent 722eb38192
commit c889e7ca31
4 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ int main(int argc, char **argv)
//Scan all the inputs. This should be done once for each frame
hidScanInput();
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break;
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break; // break in order to return to hbmenu
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_A)
{

View File

@ -20,7 +20,7 @@ int main(int argc, char **argv)
//Scan all the inputs. This should be done once for each frame
hidScanInput();
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break;
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break; // break in order to return to hbmenu
gfxFlushBuffers();
gfxSwapBuffers();

View File

@ -29,7 +29,7 @@ int main(int argc, char **argv)
//Scan all the inputs. This should be done once for each frame
hidScanInput();
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break;
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break; // break in order to return to hbmenu
u32 width, height;
u32 pos;

View File

@ -35,7 +35,7 @@ int main(int argc, char **argv)
//Scan all the inputs. This should be done once for each frame
hidScanInput();
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break;
if (hidKeysDown(CONTROLLER_P1_AUTO) & KEY_PLUS) break; // break in order to return to hbmenu
gfxFlushBuffers();
gfxSwapBuffers();