diff options
author | meepingsnesroms | 2017-02-12 16:02:24 -0800 |
---|---|---|
committer | GitHub | 2017-02-12 16:02:24 -0800 |
commit | d9b7722019987cb3331ab3ec3fcf364c82145177 (patch) | |
tree | 34346e131ec88be8715ceb44b1c984de44d6f8e9 /source/fxemu.c | |
parent | 474a67ccdccb89d369c706347085ca4619f0cbef (diff) | |
parent | c3fadd966ae2a65a683d6cc0b07a26c2980f6bbd (diff) | |
download | snesemu-d9b7722019987cb3331ab3ec3fcf364c82145177.tar.gz snesemu-d9b7722019987cb3331ab3ec3fcf364c82145177.tar.bz2 snesemu-d9b7722019987cb3331ab3ec3fcf364c82145177.zip |
Merge pull request #32 from jamsilva/master
Fixed stupid mistake that broke some games. Other minor changes.
Diffstat (limited to 'source/fxemu.c')
-rw-r--r-- | source/fxemu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/fxemu.c b/source/fxemu.c index d9c5082..3995a53 100644 --- a/source/fxemu.c +++ b/source/fxemu.c @@ -114,9 +114,7 @@ void fx_dirtySCBR() void fx_computeScreenPointers() { - if (GSU.vMode != GSU.vPrevMode || - GSU.vPrevScreenHeight != GSU.vScreenHeight || - GSU.vSCBRDirty) + if (GSU.vMode != GSU.vPrevMode || GSU.vPrevScreenHeight != GSU.vScreenHeight || GSU.vSCBRDirty) { int32_t i; |