Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for GERMAN.DAT #508

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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: 4 additions & 0 deletions src/resources/ids.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ const char *get_resource_file(unsigned int id) {
return "SOUNDS.DAT";
case DAT_ENGLISH:
return "ENGLISH.DAT";
case DAT_GERMAN:
return "GERMAN.DAT";
case DAT_GRAPHCHR:
return "GRAPHCHR.DAT";
case DAT_CHARSMAL:
Expand Down Expand Up @@ -190,6 +192,8 @@ const char *get_resource_name(unsigned int id) {
return "DAT_SOUNDS";
case DAT_ENGLISH:
return "DAT_ENGLISH";
case DAT_GERMAN:
return "DAT_GERMAN";
case DAT_GRAPHCHR:
return "DAT_GRAPHCHR";
case DAT_CHARSMAL:
Expand Down
1 change: 1 addition & 0 deletions src/resources/ids.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ typedef enum resource_id
PSM_ARENA4,
DAT_SOUNDS,
DAT_ENGLISH,
DAT_GERMAN,
DAT_GRAPHCHR,
DAT_CHARSMAL,
DAT_ALTPALS,
Expand Down
Loading