mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-03 05:57:40 -05:00
fix: Shift right data processor node displaying shift left in its header
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
|
||||
#include <cctype>
|
||||
#include <random>
|
||||
#include <ranges>
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
@@ -407,7 +408,7 @@ namespace hex::plugin::builtin {
|
||||
|
||||
class NodeBitwiseShiftRight : public dp::Node {
|
||||
public:
|
||||
NodeBitwiseShiftRight() : Node("hex.builtin.nodes.bitwise.shift_left.header", {
|
||||
NodeBitwiseShiftRight() : Node("hex.builtin.nodes.bitwise.shift_right.header", {
|
||||
dp::Attribute(dp::Attribute::IOType::In, dp::Attribute::Type::Buffer, "hex.builtin.nodes.common.input"),
|
||||
dp::Attribute(dp::Attribute::IOType::In, dp::Attribute::Type::Integer, "hex.builtin.nodes.common.amount"),
|
||||
dp::Attribute(dp::Attribute::IOType::Out, dp::Attribute::Type::Buffer, "hex.builtin.nodes.common.output")
|
||||
|
||||
Reference in New Issue
Block a user