From c24895c52fce73effae8d4582361927c5eaae506 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Wed, 11 Sep 2019 16:13:54 -0400 Subject: [PATCH] Added deprecated warning to the hid/abstracted-pad example. --- hid/abstracted-pad/source/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hid/abstracted-pad/source/main.c b/hid/abstracted-pad/source/main.c index d55fe1d..b778ad1 100644 --- a/hid/abstracted-pad/source/main.c +++ b/hid/abstracted-pad/source/main.c @@ -7,7 +7,7 @@ #include // This example shows how to use AbstractedPad, see also libnx hiddbg.h. Depending on state type2, either a new virtual controller can be registered, or the state can be merged with an existing controller. -// Note that Hdls can also be used for this, which generally you would want to use that instead. +// This is deprecated, use Hdls instead when running on compatible system-versions. // Main program entrypoint int main(int argc, char* argv[])