Skip to content

Commit

Permalink
More minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Dec 10, 2023
1 parent 96651fc commit a54dcaa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions res/DEHACKED.lmp
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ M_EPISODE6 = Sigil II
M_WHICHEXPANSION = Which Expansion?
M_EXPANSION1 = Hell on Earth
M_EXPANSION2 = No Rest for the Living
M_EXPANSION3 = Hellion
M_CHOOSESKILLLEVEL = Choose Skill Level:
M_SKILLLEVEL1 = I'm too young to die.
M_SKILLLEVEL2 = Hey, not too rough.
Expand Down Expand Up @@ -413,6 +414,7 @@ CAPTION_EPISODE5 = SIGIL
CAPTION_EPISODE6 = SIGIL II
CAPTION_EXPANSION1 = Hell On Earth
CAPTION_EXPANSION2 = No Rest For The Living
CAPTION_EXPANSION3 = Hellion
CAPTION_PLUTONIA = Final DOOM: The Plutonia Experiment
CAPTION_TNT = Final DOOM: TNT - Evilution
CAPTION_CHEX = Chex Quest
Expand Down
Binary file modified res/M_EPI6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/doomretro.wad
Binary file not shown.
4 changes: 2 additions & 2 deletions src/d_deh.c
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,6 @@ char *s_M_CONSOLE = "";
char *s_M_SFXVOLUME = "";
char *s_M_MUSICVOLUME = "";
char *s_M_PAUSED = "";
char *s_M_MORE = "";

char *s_CAPTION_DOOM = "";
char *s_CAPTION_DOOM2 = "";
Expand All @@ -609,6 +608,7 @@ char *s_CAPTION_EPISODE5 = "";
char *s_CAPTION_EPISODE6 = "";
char *s_CAPTION_EXPANSION1 = "";
char *s_CAPTION_EXPANSION2 = "";
char *s_CAPTION_EXPANSION3 = "";
char *s_CAPTION_PLUTONIA = "";
char *s_CAPTION_TNT = "";
char *s_CAPTION_CHEX = "";
Expand Down Expand Up @@ -1217,7 +1217,6 @@ deh_strs deh_strlookup[] =
{ &s_M_SFXVOLUME, "M_SFXVOLUME" },
{ &s_M_MUSICVOLUME, "M_MUSICVOLUME" },
{ &s_M_PAUSED, "M_PAUSED" },
{ &s_M_MORE, "M_MORE" },

{ &s_CAPTION_DOOM, "CAPTION_DOOM" },
{ &s_CAPTION_DOOM2, "CAPTION_DOOM2" },
Expand All @@ -1229,6 +1228,7 @@ deh_strs deh_strlookup[] =
{ &s_CAPTION_EPISODE6, "CAPTION_EPISODE6" },
{ &s_CAPTION_EXPANSION1, "CAPTION_EXPANSION1" },
{ &s_CAPTION_EXPANSION2, "CAPTION_EXPANSION2" },
{ &s_CAPTION_EXPANSION3, "CAPTION_EXPANSION3" },
{ &s_CAPTION_PLUTONIA, "CAPTION_PLUTONIA" },
{ &s_CAPTION_TNT, "CAPTION_TNT" },
{ &s_CAPTION_CHEX, "CAPTION_CHEX" },
Expand Down
2 changes: 1 addition & 1 deletion src/d_deh.h
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ extern char *s_M_CONSOLE;
extern char *s_M_SFXVOLUME;
extern char *s_M_MUSICVOLUME;
extern char *s_M_PAUSED;
extern char *s_M_MORE;

extern char *s_CAPTION_DOOM;
extern char *s_CAPTION_DOOM2;
Expand All @@ -475,6 +474,7 @@ extern char *s_CAPTION_EPISODE5;
extern char *s_CAPTION_EPISODE6;
extern char *s_CAPTION_EXPANSION1;
extern char *s_CAPTION_EXPANSION2;
extern char *s_CAPTION_EXPANSION3;
extern char *s_CAPTION_PLUTONIA;
extern char *s_CAPTION_TNT;
extern char *s_CAPTION_CHEX;
Expand Down
4 changes: 1 addition & 3 deletions src/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,7 @@ bool D_IsSIGILWAD(char *filename)

bool D_IsSIGIL2WAD(char *filename)
{
const char *file = leafname(filename);

return (M_StringCompare(file, "SIGIL_II_V1_0.WAD"));
return (M_StringStartsWith(leafname(filename), "SIGIL_II_V"));
}

bool D_IsDOOM2IWAD(char *filename)
Expand Down

0 comments on commit a54dcaa

Please sign in to comment.