changed paddr_buttons to vaddr

This commit is contained in:
inspuration 2014-05-29 16:45:09 -04:00
parent 6682f9173b
commit 3285b3c168
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ inline void Write(u32 addr, const T data) {
//TODO: replace with an interface that doesnt suck (bravia)
void SetButtonReg(u32 buttonData) {
Memory::Write32(PADDR_BUTTONS, buttonData);
Memory::Write32(VADDR_BUTTONS, buttonData);
}
/// Update hardware

View file

@ -13,7 +13,7 @@ struct Registers {
extern Registers g_regs;
enum {
PADDR_BUTTONS = 0x1000001c, //TODO: it works using the shared mem mapping with all homebrew tested, however the wiki states 0x10146000 as the paddr
VADDR_BUTTONS = 0x1000001c, //TODO: it works using the shared mem mapping with all homebrew tested, however the wiki states 0x10146000 as the paddr
};