Skip to content

Commit

Permalink
Run apt-update on ubuntu
Browse files Browse the repository at this point in the history
Update vcpkg version commitId to 2021.05.12.

Fix removal of deprecated ImGui fuynction name to use new name.
  • Loading branch information
adam4813 committed May 29, 2021
1 parent da7feb2 commit da381f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/tec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
arch: [ x86, x64 ]
include:
- os: windows-latest
vcpkgCommitId: '5eea585548058540c3b73d087eb101c033b5fa85'
vcpkgCommitId: '5568f110b509a9fd90711978a7cb76bae75bb092'
vcpkgTripletOs: windows
- os: windows-2016
vcpkgCommitId: '5eea585548058540c3b73d087eb101c033b5fa85'
vcpkgCommitId: '5568f110b509a9fd90711978a7cb76bae75bb092'
vcpkgTripletOs: windows
- os: ubuntu-18.04
vcpkgCommitId: 'ec6fe06e8da05a8157dc8581fa96b36b571c1bd5'
vcpkgCommitId: '5568f110b509a9fd90711978a7cb76bae75bb092'
vcpkgTripletOs: linux
- os: ubuntu-16.04
vcpkgCommitId: 'ec6fe06e8da05a8157dc8581fa96b36b571c1bd5'
vcpkgCommitId: '5568f110b509a9fd90711978a7cb76bae75bb092'
vcpkgTripletOs: linux
- os: macOS-latest
vcpkgCommitId: 'ec6fe06e8da05a8157dc8581fa96b36b571c1bd5'
vcpkgCommitId: '5568f110b509a9fd90711978a7cb76bae75bb092'
vcpkgTripletOs: osx
exclude:
- os: ubuntu-18.04
Expand All @@ -45,7 +45,9 @@ jobs:
- uses: lukka/get-cmake@latest
- name: Install os deps (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install libgl1-mesa-dev xorg-dev libglu1-mesa-dev libxinerama-dev libxcursor-dev p7zip-full -y
run: |
sudo apt-get update
sudo apt-get install libgl1-mesa-dev xorg-dev libglu1-mesa-dev libxinerama-dev libxcursor-dev p7zip-full -y
- name: Set gcc-9 on Ubuntu16.04
uses: lukka/set-shell-env@v1
if: contains( matrix.os, 'ubuntu-16.04')
Expand Down
2 changes: 1 addition & 1 deletion client/gui/console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void Console::Draw(IMGUISystem*) {
*/
}
if (scrollToBottom) {
ImGui::SetScrollHere(1.0f);
ImGui::SetScrollHereY(1.0f);
scrollToBottom = false;
}

Expand Down

0 comments on commit da381f2

Please sign in to comment.