Skip to content

Commit

Permalink
fixed includes for "TinyJoypadUtils.h"
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorandil committed Mar 9, 2023
1 parent 1793c8c commit a1e778e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TinyDungeon.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
// 'micros()' and set the PLL to 16MHZ Internal PLL.

#include "dungeon.h"
#include "tinyJoypadUtils.h"
#include "TinyJoypadUtils.h"
#include "soundFX.h"

static Dungeon _dungeon;
Expand Down
2 changes: 1 addition & 1 deletion TinyJoypadUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//

#include <Arduino.h>
#include "tinyJoypadUtils.h"
#include "TinyJoypadUtils.h"

#if defined(__AVR_ATtiny85__)
#include <ssd1306xled.h>
Expand Down
2 changes: 1 addition & 1 deletion dungeon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "dungeonTypes.h"
#include "externBitmaps.h"
#include "soundFX.h"
#include "tinyJoypadUtils.h"
#include "TinyJoypadUtils.h"

/*--------------------------------------------------------*/
void Dungeon::clear()
Expand Down
2 changes: 1 addition & 1 deletion soundFX.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Arduino.h>
#include "tinyJoypadUtils.h"
#include "TinyJoypadUtils.h"

void stepSound();
void wallSound();
Expand Down

0 comments on commit a1e778e

Please sign in to comment.