Revert "[BugFix] Enums are only 2 bytes on some Devices"

This reverts commit 4ec34f6986.

Reason for revert:
 -fshort-enums makes them smaller if the explicitrly enumerated values will fit in a smaller type

Change-Id: I834dfd2b2039eda91bc02c9cf95a0f9dfc5783f6
This commit is contained in:
William Wilgus 2024-11-24 11:38:16 -05:00 committed by Gerrit Rockbox
parent 4ec34f6986
commit 1fddea5e8e
18 changed files with 165 additions and 168 deletions

View file

@ -104,7 +104,7 @@ char cRSID_playSIDfile(cRSID_C64instance* C64, char* filename, char subtune) {
cRSID_SIDheader* cRSID_loadSIDtune(cRSID_C64instance* C64, char* filename) {
#define CRSID_FILESIZE_MAX (100000)
enum SIDspecs { CRSID_FILESIZE_MAX = 100000 };
int FileSize;
static unsigned char SIDfileData [CRSID_FILESIZE_MAX]; //use memset?