diff options
| author | omegadox <omegadox@gmail.com> | 2009-04-06 16:10:45 +0000 |
|---|---|---|
| committer | omegadox <omegadox@gmail.com> | 2009-04-06 16:10:45 +0000 |
| commit | 80d48a08d805b4faa16ea1107f466884ae873634 (patch) | |
| tree | a7eb8487f2885faf3b6b82cb7e4291afb8575d96 /Source/Core/VideoCommon/Src/BPMemory.cpp | |
| parent | 67834f960e6ba8405b77453d61d025491396ff51 (diff) | |
Change "BreakPoint" to "Bypass", YAGD says BP REG is a "Bypass Raster State Register"
Also some cleanup in BPStructs and I think this should be SETTLUT not LOADTLUT, because there is already a LOADTLUT earlier in the reg list.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2898 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/BPMemory.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/Src/BPMemory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Src/BPMemory.cpp b/Source/Core/VideoCommon/Src/BPMemory.cpp index a055fbcaeb..01634c40ba 100644 --- a/Source/Core/VideoCommon/Src/BPMemory.cpp +++ b/Source/Core/VideoCommon/Src/BPMemory.cpp @@ -24,7 +24,7 @@ BPMemory bpmem; // The plugin must implement this. -void BPWritten(const BreakPoint& bp); +void BPWritten(const Bypass& bp); // Call browser: OpcodeDecoding.cpp ExecuteDisplayList > Decode() > LoadBPReg() void LoadBPReg(u32 value0) @@ -35,7 +35,7 @@ void LoadBPReg(u32 value0) int newval = (oldval & ~bpmem.bpMask) | (value0 & bpmem.bpMask); int changes = (oldval ^ newval) & 0xFFFFFF; - BreakPoint bp = {opcode, changes, newval}; + Bypass bp = {opcode, changes, newval}; //reset the mask register if (opcode != 0xFE) @@ -61,7 +61,7 @@ void BPReload() // Cases in which we DON'T want to reload the BP continue; default: - BreakPoint bp = {i, 0xFFFFFF, ((u32*)&bpmem)[i]}; + Bypass bp = {i, 0xFFFFFF, ((u32*)&bpmem)[i]}; BPWritten(bp); } } |
