Skip to content

Commit 2872620

Browse files
authored
Merge branch 'hyperion-project:master' into feature/hd108
2 parents e2288b1 + dd81a23 commit 2872620

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/qt5_6.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
Linux:
3838
name: 🐧 ${{ matrix.os.description }}
39-
runs-on: ubuntu-latest
39+
runs-on: ubuntu-22.04
4040
strategy:
4141
fail-fast: false
4242
matrix:
@@ -182,7 +182,7 @@ jobs:
182182

183183
- name: Install Vulkan SDK
184184
if: ${{ inputs.qt_version == '6' }}
185-
uses: jakoch/[email protected].5
185+
uses: jakoch/[email protected].6
186186
with:
187187
install_runtime: false
188188
cache: true

bin/scripts/docker-compile.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ if [ ${CURRENT_ARCHITECTURE} == "aarch64" ]; then
200200
USER_ARCHITECTURE="arm/v6"
201201
fi
202202
fi
203-
if [ $ARCHITECTURE != $USER_ARCHITECTURE ]; then
203+
if [ $CURRENT_ARCHITECTURE != $USER_ARCHITECTURE ]; then
204204
log "Identified user space current architecture: $USER_ARCHITECTURE"
205205
CURRENT_ARCHITECTURE=$USER_ARCHITECTURE
206206
fi
@@ -211,7 +211,7 @@ fi
211211
log "Identified kernel current architecture: $CURRENT_ARCHITECTURE"
212212
if [ $ARCHITECTURE != $CURRENT_ARCHITECTURE ]; then
213213
echo "---> Build is not for the same architecturem, enable emulation for ${PLATFORM_ARCHITECTURE}"
214-
ENTRYPOINT_OPTION=
214+
ENTRYPOINT_OPTION="--entrypoint /usr/bin/qemu-static"
215215

216216
if [ $CURRENT_ARCHITECTURE != "amd64" ]; then
217217
echo "---> Emulation builds can only be executed on linux/amd64, linux/x86_64 platforms, current architecture is ${CURRENT_ARCHITECTURE}"

libsrc/utils/ImageResampler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void ImageResampler::processImage(const uint8_t * data, int width, int height, i
5353
int xDestStart {0};
5454
int xDestEnd = {outputWidth-1};
5555
int yDestStart = {0};
56-
int yDestEnd = {outputWidth-1};
56+
int yDestEnd = {outputHeight-1};
5757

5858
switch (_flipMode)
5959
{

0 commit comments

Comments
 (0)