From 5865ae2d6fcbfaef9a9e6799391777ee39e3802f Mon Sep 17 00:00:00 2001 From: Sean Maas Date: Sun, 27 Apr 2014 19:47:58 -0400 Subject: [PATCH] Add a comment about game list color --- .../src/org/dolphinemu/dolphinemu/gamelist/GameListAdapter.java | 1 + 1 file changed, 1 insertion(+) 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 } } + // Make every other game in the list grey if (position % 2 == 1) convertView.setBackgroundColor(0xFFE3E3E3);