(svn r11939) -Codechange: some type fixes and very initial steps into supporting NDS by default. Based on work by Dominik.

This commit is contained in:
rubidium
2008-01-21 23:55:57 +00:00
parent ca1b3e7b4e
commit 9444eb4484
6 changed files with 32 additions and 21 deletions

View File

@@ -23,12 +23,12 @@ uint _sprite_cache_size = 4;
struct SpriteCache {
void *ptr;
uint8 file_slot;
uint32 file_pos;
int16 lru;
uint32 id;
void *ptr;
const char *grf_name;
uint32 id;
uint32 file_pos;
uint16 file_slot;
int16 lru;
};