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:
parent
d3f576839b
commit
93143d572a
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user