Programatically skip the intro
This commit is contained in:
parent
6844a1ca84
commit
43f4fce5dd
@ -30,10 +30,10 @@ data/%.c: data/%.txt
|
|||||||
echo ";" >> data/$*.c
|
echo ";" >> data/$*.c
|
||||||
|
|
||||||
run: $(GAME)_linux
|
run: $(GAME)_linux
|
||||||
./$(GAME)_linux
|
SKIP_INTRO=1 ./$(GAME)_linux
|
||||||
|
|
||||||
run_win: $(GAME)_windows.exe
|
run_win: $(GAME)_windows.exe
|
||||||
wine $(GAME)_windows.exe
|
SKIP_INTRO=1 wine $(GAME)_windows.exe
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f ./$(GAME)_linux
|
rm -f ./$(GAME)_linux
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include <raylib.h>
|
#include <raylib.h>
|
||||||
|
|
||||||
@ -11,9 +12,11 @@ int main(int argc, char** argv) {
|
|||||||
InitWindow(800, 450, "Text Adventure");
|
InitWindow(800, 450, "Text Adventure");
|
||||||
SetTargetFPS(60);
|
SetTargetFPS(60);
|
||||||
|
|
||||||
display_loading();
|
if (!getenv("SKIP_INTRO") || strcmp(getenv("SKIP_INTRO"), "1") != 0) {
|
||||||
Intro *i = load_intro();
|
display_loading();
|
||||||
intro_display(i);
|
Intro *i = load_intro();
|
||||||
|
intro_display(i);
|
||||||
|
}
|
||||||
|
|
||||||
Game *g = game_create();
|
Game *g = game_create();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user