scrcpy/app
Romain Vimont 60b2f2ca64 Indent switch blocks content
For readability, indent "case" in switch blocks.

Replace:

    switch (x) {
    case 1:
        // ...
    case 2:
        // ...
    case 3: { // a local scope block
        int i = 42;
        // ...
    }
    }

By:

    switch (x) {
        case 1:
            // ...
        case 2:
            // ...
        case 3: { // a local scope block
            int i = 42;
            // ...
        }
    }
2018-02-01 11:44:20 +01:00
..
src Indent switch blocks content 2018-02-01 11:44:20 +01:00
tests Swap position/point names 2018-01-29 14:52:22 +01:00
meson.build Rename screen -> scrcpy -> main 2018-01-23 16:44:59 +01:00