Add missing includes

This commit is contained in:
Edgar Handal 2020-07-06 06:18:56 -05:00 committed by R2DLiu
commit 10eea11525
2 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,8 @@
#include "SlippiPad.h" #include "SlippiPad.h"
#include <string.h>
// TODO: Confirm the default and padding values are right // TODO: Confirm the default and padding values are right
static u8 emptyPad[SLIPPI_PAD_FULL_SIZE] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; static u8 emptyPad[SLIPPI_PAD_FULL_SIZE] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };

View file

@ -1,5 +1,6 @@
#pragma once #pragma once
#include <limits.h>
#include <queue> #include <queue>
#include <string> #include <string>
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>