diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-04-16 10:19:07 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-04-16 10:19:07 -0700 |
| commit | 6132a05fd9e6fa51972f1445ee051e99b816527f (patch) | |
| tree | 0aaf30a35946563ebcf0a973268c7c78552be355 /shared-bindings/gamepad/GamePad.c | |
| parent | 0e03a321e4c4fba6c5d700bfef830c6196aec106 (diff) | |
Include cleanup and style tweaks
Diffstat (limited to 'shared-bindings/gamepad/GamePad.c')
| -rw-r--r-- | shared-bindings/gamepad/GamePad.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/shared-bindings/gamepad/GamePad.c b/shared-bindings/gamepad/GamePad.c index c80aa7f7c..c342cbbf9 100644 --- a/shared-bindings/gamepad/GamePad.c +++ b/shared-bindings/gamepad/GamePad.c @@ -23,17 +23,16 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ +#include "shared-bindings/gamepad/GamePad.h" + #include "py/obj.h" #include "py/runtime.h" #include "py/mphal.h" #include "py/gc.h" #include "py/mpstate.h" -#include "shared-module/gamepad/__init__.h" -#include "shared-module/gamepad/GamePad.h" +#include "shared-bindings/gamepad/__init__.h" #include "shared-bindings/digitalio/DigitalInOut.h" #include "supervisor/shared/translate.h" -#include "GamePad.h" -#include "__init__.h" //| .. currentmodule:: gamepad |
