.ToLE() changed to .value() or removed

This commit is contained in:
Nekotekina 2015-01-14 02:08:00 +03:00
parent 8df825abc5
commit bf7cf0ee9d
20 changed files with 104 additions and 108 deletions

View file

@ -10,7 +10,7 @@
#include "Emu/SysCalls/CB_FUNC.h"
#include "Emu/SysCalls/lv2/sys_time.h"
#define ARGS(x) (x >= count ? OutOfArgsCount(x, cmd, count, args.addr()) : args[x].ToLE())
#define ARGS(x) (x >= count ? OutOfArgsCount(x, cmd, count, args.addr()) : args[x].value())
#define CMD_DEBUG 0
u32 methodRegisters[0xffff];