summaryrefslogtreecommitdiff
path: root/display.h
diff options
context:
space:
mode:
Diffstat (limited to 'display.h')
-rw-r--r--display.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/display.h b/display.h
index 8326962..80a9ff1 100644
--- a/display.h
+++ b/display.h
@@ -241,7 +241,7 @@ public:
inline bool cText2SkinDisplayTracks::HasTabText(int Index, int n)
{
- if (Index < 0 || mItems.size () > (uint)Index && n <= 0)
+ if (Index < 0 || (mItems.size () > (uint)Index && n <= 0))
return mItems[Index].length() > 0;
return false;
}