Programatically skip the intro

This commit is contained in:
Bill Rossi 2025-01-29 05:13:32 -05:00
parent 6844a1ca84
commit 43f4fce5dd
2 changed files with 8 additions and 5 deletions

View File

@ -30,10 +30,10 @@ data/%.c: data/%.txt
echo ";" >> data/$*.c
run: $(GAME)_linux
./$(GAME)_linux
SKIP_INTRO=1 ./$(GAME)_linux
run_win: $(GAME)_windows.exe
wine $(GAME)_windows.exe
SKIP_INTRO=1 wine $(GAME)_windows.exe
clean:
rm -f ./$(GAME)_linux

View File

@ -1,6 +1,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <raylib.h>
@ -11,9 +12,11 @@ int main(int argc, char** argv) {
InitWindow(800, 450, "Text Adventure");
SetTargetFPS(60);
if (!getenv("SKIP_INTRO") || strcmp(getenv("SKIP_INTRO"), "1") != 0) {
display_loading();
Intro *i = load_intro();
intro_display(i);
}
Game *g = game_create();