mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 14:58:03 +03:00
a few minor code fixes.
also added a user file that should simplify running from VS for newcomers git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5338 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3861f56d51
commit
22551a0a8a
4 changed files with 53 additions and 3 deletions
|
@ -137,7 +137,7 @@ inline bool isOverS32() {
|
|||
}
|
||||
|
||||
inline bool isLess() {
|
||||
return ((bool)(g_dsp.r[DSP_REG_SR] & SR_OVERFLOW) != (bool)(g_dsp.r[DSP_REG_SR] & SR_SIGN));
|
||||
return (!(g_dsp.r[DSP_REG_SR] & SR_OVERFLOW) != !(g_dsp.r[DSP_REG_SR] & SR_SIGN));
|
||||
}
|
||||
|
||||
inline bool isZero() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue