1
0
mirror of synced 2025-02-17 18:59:21 +01:00

fix: Shift right data processor node displaying shift left in its header

This commit is contained in:
Nik 2023-10-19 22:48:11 +02:00 committed by GitHub
parent 79e25b0889
commit b4ee02b725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")