Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add some TODOs.
  • Loading branch information
neobrain committed Jan 8, 2013
1 parent d388277 commit e204a6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -293,7 +293,8 @@ void Interpreter::mfspr(UGeckoInstruction _inst)

case SPR_WPAR:
{
// If wpar_empty ever is false, Paper Mario hangs. Strange.
// TODO: If wpar_empty ever is false, Paper Mario hangs. Strange.
// Maybe WPAR is automatically flushed after a certain amount of time?
bool wpar_empty = true; //GPFifo::IsEmpty();
if (!wpar_empty)
rSPR(iIndex) |= 1; // BNE = buffer not empty
Expand Down
1 change: 1 addition & 0 deletions Source/Plugins/Plugin_VideoDX9/Src/Render.cpp
Expand Up @@ -1201,6 +1201,7 @@ void Renderer::ApplyState(bool bUseDstAlpha)
{
if (bUseDstAlpha)
{
// TODO: WTF is this crap? We're enabling color writing regardless of the actual GPU state here...
D3D::ChangeRenderState(D3DRS_COLORWRITEENABLE, D3DCOLORWRITEENABLE_ALPHA);
D3D::ChangeRenderState(D3DRS_ALPHABLENDENABLE, false);
if(bpmem.zmode.testenable && bpmem.zmode.updateenable)
Expand Down

0 comments on commit e204a6e

Please sign in to comment.