mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-16 17:12:23 -07:00
8 lines
175 B
C++
8 lines
175 B
C++
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
bias = (bias^x)&7;
|
|
x -= bias;
|
|
x *= 2;
|
|
x *= x;
|
|
x += bias; |