Skip to content

Commit 33ad97c

Browse files
committed
eeprom: Add additional eeprom adjustments
1 parent bcbaa0f commit 33ad97c

4 files changed

Lines changed: 145 additions & 179 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,16 @@ jobs:
7979
echo
8080
echo "==== LICENSE for UbuntuMono-Regular.ttf ===="
8181
cat assets/LICENSE_ubuntu_mono
82+
echo
8283
echo "==== LICENSE for SHA1/RC4 functions ===="
83-
cat lib/crypt/LICENSE
84+
cat lib/xbox_eeprom/LICENSE
85+
echo
8486
echo "==== LICENSE for json parser ===="
8587
cat lib/json/LICENSE
88+
echo
8689
echo "==== LICENSE for mbedtls ===="
8790
cat lib/mbedtls/LICENSE
91+
echo
8892
} > artifact/LICENSE
8993
9094
- name: Upload artifact

main.h

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,6 @@ void _putc(int c, void *ctx);
3737

3838
#define DVD_LAUNCH_EVENT (SDL_USEREVENT + 0)
3939

40-
// FIXME probably should be in nxdk
41-
#define AUDIO_FLAG_ENCODING_AC3 0x00010000
42-
#define AUDIO_FLAG_ENCODING_DTS 0x00020000
43-
#define AUDIO_FLAG_ENCODING_MASK (AUDIO_FLAG_ENCODING_AC3 | AUDIO_FLAG_ENCODING_DTS)
44-
#define AUDIO_FLAG_CHANNEL_MONO 0x00000001
45-
#define AUDIO_FLAG_CHANNEL_SURROUND 0x00000002
46-
#define AUDIO_FLAG_CHANNEL_MASK (AUDIO_FLAG_CHANNEL_MONO | AUDIO_FLAG_CHANNEL_SURROUND)
47-
#define AV_REGION_NTSC 0x00400100
48-
#define AV_REGION_NTSCJ 0x00400200
49-
#define AV_REGION_PAL 0x00800300
50-
#define AV_REGION_PALM 0x00400400
51-
#define GAME_REGION_NA 0x00000001
52-
#define GAME_REGION_JAPAN 0x00000002
53-
#define GAME_REGION_EUROPE 0x00000004
54-
#define GAME_REGION_MANUFACTURING 0x80000000
55-
5640
typedef struct
5741
{
5842
char *label;

0 commit comments

Comments
 (0)