Fix parameter order

This commit is contained in:
Joonas Javanainen 2019-07-01 22:39:24 +03:00
parent 9e6cac5054
commit b4bd7a2743
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179

View File

@ -32,5 +32,5 @@ script:
- cargo test --all --verbose --manifest-path imgui-examples/Cargo.toml
- cargo build --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml
- cargo test --all --verbose --manifest-path imgui-gfx-examples/Cargo.toml
- if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo build --all --verbose --manifest-path --no-default-features --features directx imgui-gfx-examples/Cargo.toml; fi
- if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo test --all --verbose --manifest-path --no-default-features --features directx imgui-gfx-examples/Cargo.toml; fi
- if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo build --all --verbose --no-default-features --features directx --manifest-path imgui-gfx-examples/Cargo.toml; fi
- if [ "${TRAVIS_OS_NAME}" = "windows" ]; then cargo test --all --verbose --no-default-features --features directx --manifest-path imgui-gfx-examples/Cargo.toml; fi