Skip to content

Commit

Permalink
Fix function declaration of play_sample().
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenMichaelKlose committed Feb 14, 2024
1 parent 0142e35 commit 63c4c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pet_tetris/tetris.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ extern void print_uint16_5(UINT16 n);
extern void print_uint8_2(UINT8 n);
extern void print_string(char *str);

extern void play_sample(unsigned char speed, unsigned char *sample, unsigned int length);
extern void __fastcall__ play_sample(unsigned char speed, const unsigned char *sample, unsigned int length);

/*****************************************************************************
* Main program entry point
Expand Down

0 comments on commit 63c4c18

Please sign in to comment.