Few warnings fixed

This commit is contained in:
Nekotekina 2014-10-24 17:24:09 +04:00
parent 973e3f8f7e
commit 6df5ddb973
15 changed files with 720 additions and 159 deletions

View file

@ -28,7 +28,7 @@ public:
{
if (m_count >= SQSize)
{
if (Emu.IsStopped() || do_exit && *do_exit)
if (Emu.IsStopped() || (do_exit && *do_exit))
{
return false;
}
@ -55,7 +55,7 @@ public:
{
if (!m_count)
{
if (Emu.IsStopped() || do_exit && *do_exit)
if (Emu.IsStopped() || (do_exit && *do_exit))
{
return false;
}
@ -90,7 +90,7 @@ public:
{
if (m_count <= pos)
{
if (Emu.IsStopped() || do_exit && *do_exit)
if (Emu.IsStopped() || (do_exit && *do_exit))
{
return false;
}