Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ImunoForce/src/ImunoForce.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


//Object object_head = {0,header,NULL,NULL,NULL,NULL};
main(int argc, char *argv[]) {
int main(int argc, char *argv[]) {
int frame = 1, bTrig = 10, bTrig2 = 10 , bulletFreq = 10, i,j;
int shoot_enable = 0;
int shoot_enable2 = 0;
Expand Down Expand Up @@ -52,7 +52,7 @@ main(int argc, char *argv[]) {
//Initialize allegro addons
initialization();

ALLEGRO_FONT *pressstart_20 = al_load_font("PressStart2P.ttf", 20, 0);
ALLEGRO_FONT *pressstart_20 = al_load_font("src/PressStart2P.ttf", 20, 0);

//SOUNDS
al_reserve_samples(10);
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,9 @@ We are craving for your Feedback, Game play, ~~Code~~ Ideas.

Have a good one! ^^

## How to compile at the command line
```
gcc -Wall src/ImunoForce.c src/ImunoEngine.c src/AllegroDef.c src/Multiplayer.c -o imunoforce -lallegro -lallegro_image -lallegro_audio -lallegro_font -lallegro_primitives -lallegro_dialog -lallegro_acodec -lallegro_ttf
```