Fix accidental swap of "const" for "static" in mxge firmware byte arrays

caused by running my import script with the wrong args.
This commit is contained in:
Andrew Gallatin 2008-01-15 15:04:40 +00:00
parent d3f576839b
commit 93143d572a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175351
2 changed files with 6 additions and 6 deletions

View File

@ -29,10 +29,10 @@ POSSIBILITY OF SUCH DAMAGE.
***************************************************************************/
/* Using zlib-1.1.3. gendat version $Name: $ */
const unsigned int eth_z8e_uncompressed_length = 606168;
static unsigned int eth_z8e_uncompressed_length = 606168;
#define U (unsigned char)
const unsigned int eth_z8e_length = 52566;
const unsigned char eth_z8e[52566] = {
static unsigned int eth_z8e_length = 52566;
static unsigned char eth_z8e[52566] = {
U 0x78,U 0xDA,U 0xEC,U 0xBD,
U 0x0F,U 0x74,U 0x54,U 0xD5,
U 0xB5,U 0x3F,U 0xBE,U 0x67,

View File

@ -29,10 +29,10 @@ POSSIBILITY OF SUCH DAMAGE.
***************************************************************************/
/* Using zlib-1.1.3. gendat version $Name: $ */
const unsigned int ethp_z8e_uncompressed_length = 615208;
static unsigned int ethp_z8e_uncompressed_length = 615208;
#define U (unsigned char)
const unsigned int ethp_z8e_length = 52908;
const unsigned char ethp_z8e[52908] = {
static unsigned int ethp_z8e_length = 52908;
static unsigned char ethp_z8e[52908] = {
U 0x78,U 0xDA,U 0xEC,U 0xBD,
U 0x0F,U 0x74,U 0x54,U 0xD5,
U 0xB5,U 0x3F,U 0xBE,U 0x67,