summaryrefslogtreecommitdiff
path: root/Source/Android/src
diff options
context:
space:
mode:
authorSean Maas <seanmaas27@gmail.com>2014-04-27 19:47:58 -0400
committerSean <seanmaas27@gmail.com>2014-04-27 20:03:30 -0400
commit5865ae2d6fcbfaef9a9e6799391777ee39e3802f (patch)
tree0056d29496c577908584c63fd480cb895d1d63b1 /Source/Android/src
parentbe7f39445f13dfbd218c3bf0e1d34a4fc6172bd6 (diff)
Add a comment about game list color
Diffstat (limited to 'Source/Android/src')
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java
index af1c95eabf..c9922e1adb 100644
--- a/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java
+++ b/Source/Android/src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java
@@ -70,6 +70,7 @@ public final class GameListAdapter extends ArrayAdapter<GameListItem>
}
}
+ // Make every other game in the list grey
if (position % 2 == 1)
convertView.setBackgroundColor(0xFFE3E3E3);