(svn r11145) -Codechange: add support for "decoding" TTDPs string codes wrt to registers 0x100 to 0x10F.

This commit is contained in:
rubidium
2007-09-22 23:55:34 +00:00
parent b1fa49d3fa
commit 08c5765c0b
7 changed files with 201 additions and 12 deletions

View File

@@ -17,7 +17,7 @@
*/
static inline uint32 GetRegister(uint i)
{
extern TemporaryStorageArray<uint, 0x110> _temp_store;
extern TemporaryStorageArray<uint32, 0x110> _temp_store;
return _temp_store.Get(i);
}