From 4437fb814ff4c9798f6003331978f0d240704380 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Thu, 11 Jun 2020 22:56:04 -0400 Subject: [PATCH] Added a comment for the swkbd example. --- applet/libapplets/software-keyboard/source/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/applet/libapplets/software-keyboard/source/main.c b/applet/libapplets/software-keyboard/source/main.c index 9d9a9c5..ddfced1 100644 --- a/applet/libapplets/software-keyboard/source/main.c +++ b/applet/libapplets/software-keyboard/source/main.c @@ -107,6 +107,7 @@ int main(int argc, char* argv[]) swkbdInlineSetFinishedInitializeCallback(&kbdinline, finishinit_cb); // Launch the applet. + // If you want to display the image manually, you can also use swkbdInlineLaunch and swkbdInlineGetImageMemoryRequirement/swkbdInlineGetImage. if (R_SUCCEEDED(rc)) { rc = swkbdInlineLaunchForLibraryApplet(&kbdinline, SwkbdInlineMode_AppletDisplay, 0); printf("swkbdInlineLaunch(): 0x%x\n", rc);