Commit b36755a3fc97b54792ad145af3768a8eeeb51735

Ryan C. Gordon 2017-07-03T16:45:12

power: whoops, that should be "==" not "!=".

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/power/linux/SDL_syspower.c b/src/power/linux/SDL_syspower.c
index 4c1d9d3..aa44c00 100644
--- a/src/power/linux/SDL_syspower.c
+++ b/src/power/linux/SDL_syspower.c
@@ -465,7 +465,7 @@ SDL_GetPowerInfo_Linux_sys_class_power_supply(SDL_PowerState *state, int *second
            the system. Most system batteries don't list a scope at all; we
            assume it's a system battery if not specified. */
         if (read_power_file(base, name, "scope", str, sizeof (str))) {
-            if (SDL_strcmp(str, "device\n") != 0) {
+            if (SDL_strcmp(str, "device\n") == 0) {
                 continue;  /* skip external devices with their own batteries. */
             }
         }