- beginnings of map loading (INI parser works)

- fixed warnings in mix_decode.h

git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1075 993157c7-ee19-0410-b2c4-bb4e9862e678
This commit is contained in:
chrisf
2007-06-26 08:47:11 +00:00
parent b83b17385d
commit 2002fa4a90
7 changed files with 538 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ static void init_bignum(bignum n, dword val, dword len)
static void move_key_to_big(bignum n, char *key, dword klen, dword blen)
{
dword sign;
int i;
unsigned i;
if (key[0] & 0x80) sign = 0xff;
else sign = 0;
@@ -154,7 +154,7 @@ static void mov_bignum(bignum dest, bignum src, dword len)
memmove(dest, src, len*4);
}
static void shr_bignum(bignum n, dword bits, long int len)
static void shr_bignum(bignum n, dword bits, unsigned long int len)
{
dword i, i2;