Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false

matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, ubuntu-24.04-arm]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion Run_Length_Encode_Slow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ int Run_Length_Decode_Slow(float scale, float* vals, int num_expected_vals, unsi
}
else
{
int ival = *p;
int ival = (signed char)*p;
if (ival > VLESC2 && ival < RLESC3)
{
#ifdef DEBUG_DECODE
Expand Down