Skip to content

Commit

Permalink
Fixing graphics being in RAM a pointed out in #1
Browse files Browse the repository at this point in the history
  • Loading branch information
LaroldsJubilantJunkyard committed Jan 6, 2022
1 parent e215a50 commit 8200608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/default/Graphics/BirdAndPipes.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/

/* Start of tile array. */
unsigned char BirdAndPipes[] =
const unsigned char BirdAndPipes[] =
{
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
Expand Down
2 changes: 1 addition & 1 deletion source/default/Graphics/GroundTiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/

/* Start of tile array. */
unsigned char GroundTiles[] =
const unsigned char GroundTiles[] =
{
0xFF,0xFF,0x99,0x66,0x33,0xCC,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
Expand Down

0 comments on commit 8200608

Please sign in to comment.