diff options
| author | Jonathan Gray | 2003-03-23 13:44:59 +0000 | 
|---|---|---|
| committer | Jonathan Gray | 2003-03-23 13:44:59 +0000 | 
| commit | 3af1183c5a71408f916263e1c38c9d69177bc6e3 (patch) | |
| tree | 5408350e657e3de0236df3f1238ff38b91c21c9f | |
| parent | be47bc121e5c411b5e6c4cc39471be746113a1ce (diff) | |
| download | scummvm-rg350-3af1183c5a71408f916263e1c38c9d69177bc6e3.tar.gz scummvm-rg350-3af1183c5a71408f916263e1c38c9d69177bc6e3.tar.bz2 scummvm-rg350-3af1183c5a71408f916263e1c38c9d69177bc6e3.zip | |
move language enum to gameDetector.h
svn-id: r6848
| -rw-r--r-- | common/gameDetector.h | 17 | ||||
| -rw-r--r-- | common/system.h | 17 | 
2 files changed, 17 insertions, 17 deletions
| diff --git a/common/gameDetector.h b/common/gameDetector.h index 7eeeb479c8..54a192088d 100644 --- a/common/gameDetector.h +++ b/common/gameDetector.h @@ -34,6 +34,23 @@ enum {  	kDefaultMusicVolume = 192  }; +/* Languages + * note: values 0->8 are are _needed_ for scripts in comi please don't + * remove/change fixed numbers from this enum + */ +enum { +	EN_USA = 0, +	DE_DEU = 1, +	FR_FRA = 2, +	IT_ITA = 3, +	PT_BRA = 4, +	ES_ESP = 5, +	JA_JPN = 6, +	ZH_TWN = 7, +	KO_KOR = 8, +	HB_HEB = 20 +}; +  enum GameId {  	GID_SCUMM_FIRST = 1,  	GID_SCUMM_LAST = GID_SCUMM_FIRST + 99, diff --git a/common/system.h b/common/system.h index 6790ab3226..09553f5032 100644 --- a/common/system.h +++ b/common/system.h @@ -236,23 +236,6 @@ enum {  	GD_GP32 //ph0x  }; -/* Languages - * note: values 0->8 are are _needed_ for scripts in comi please don't - * remove/change fixed numbers from this enum - */ -enum { -	EN_USA = 0, -	DE_DEU = 1, -	FR_FRA = 2, -	IT_ITA = 3, -	PT_BRA = 4, -	ES_ESP = 5, -	JA_JPN = 6, -	ZH_TWN = 7, -	KO_KOR = 8, -	HB_HEB = 20 -}; -  enum {  #ifdef _WIN32_WCE  	SAMPLES_PER_SEC_OLD =  11025, | 
