mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Use similiar constants in genlang and language.c.
- In the future, they should be united. - Fix bug in max size calculation git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22930 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
32d261e3f9
commit
2a91a9a19e
2 changed files with 14 additions and 10 deletions
|
@ -31,10 +31,12 @@
|
|||
language! */
|
||||
#include "max_language_size.h"
|
||||
|
||||
/* both these must match the two initial bytes in the binary lang file */
|
||||
#define LANGUAGE_COOKIE 0x1a
|
||||
#define LANGUAGE_VERSION 0x04
|
||||
/* These defines must match the initial bytes in the binary lang file */
|
||||
/* See tools/genlang (TODO: Use common include for both) */
|
||||
#define LANGUAGE_COOKIE 0x1a
|
||||
#define LANGUAGE_VERSION 0x04
|
||||
|
||||
#define HEADER_SIZE 3
|
||||
|
||||
static unsigned char language_buffer[MAX_LANGUAGE_SIZE];
|
||||
|
||||
|
@ -54,12 +56,12 @@ int lang_load(const char *filename)
|
|||
int fsize;
|
||||
int fd = open(filename, O_RDONLY);
|
||||
int retcode=0;
|
||||
unsigned char lang_header[3];
|
||||
unsigned char lang_header[HEADER_SIZE];
|
||||
if(fd < 0)
|
||||
return 1;
|
||||
fsize = filesize(fd) - 2;
|
||||
fsize = filesize(fd) - HEADER_SIZE;
|
||||
if(fsize <= MAX_LANGUAGE_SIZE) {
|
||||
read(fd, lang_header, 3);
|
||||
read(fd, lang_header, HEADER_SIZE);
|
||||
if((lang_header[0] == LANGUAGE_COOKIE) &&
|
||||
(lang_header[1] == LANGUAGE_VERSION) &&
|
||||
(lang_header[2] == TARGET_ID)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue