Skip to content

Commit

Permalink
Remove incorrect static qualifier (#538)
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel authored Jan 14, 2025
1 parent a8ce191 commit 2e13ba5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/astcenc_compress_symbolic.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
// ----------------------------------------------------------------------------
// Copyright 2011-2024 Arm Limited
// Copyright 2011-2025 Arm Limited
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy
Expand Down Expand Up @@ -1280,7 +1280,7 @@ void compress_block(
1.0f
};

static const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot;
const float errorval_overshoot = 1.0f / ctx.config.tune_mse_overshoot;

// Only enable MODE0 fast path if enabled
// Never enable for 3D blocks as no "always" block modes are available
Expand Down

0 comments on commit 2e13ba5

Please sign in to comment.