diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index c5e27bb0d..9371a0448 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Install dependencies run: | - sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev + sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev curl - name: Checkout repo uses: actions/checkout@v2 - name: Checkout LFS diff --git a/Source/Engine/Renderer/ShadowsPass.cpp b/Source/Engine/Renderer/ShadowsPass.cpp index 4c3260045..0552fc598 100644 --- a/Source/Engine/Renderer/ShadowsPass.cpp +++ b/Source/Engine/Renderer/ShadowsPass.cpp @@ -87,8 +87,8 @@ bool ShadowsPass::Init() if (!_supportsShadows) { LOG(Warning, "GPU doesn't support shadows rendering"); - LOG(Warning, "Format: {0} features support: {1}", (int32)SHADOW_MAPS_FORMAT, (uint32)formatFeaturesDepth.Support); - LOG(Warning, "Format: {0} features support: {1}", (int32)formatTexture, (uint32)formatFeaturesTexture.Support); + LOG(Warning, "Format: {0}, features support: {1}", (int32)SHADOW_MAPS_FORMAT, (uint32)formatFeaturesDepth.Support); + LOG(Warning, "Format: {0}, features support: {1}", (int32)formatTexture, (uint32)formatFeaturesTexture.Support); } return false;