Skip to content

Commit

Permalink
fix: fix ValueResponse (#207)
Browse files Browse the repository at this point in the history
Value Response had incorrect members and size
  • Loading branch information
nikitalita authored Oct 27, 2023
1 parent c586f0a commit 34e50a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CommonLibSF/include/RE/D/DebuggerMessages.h
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,11 @@ namespace RE::GameScript
virtual void SerializeBody(Json::Value& r_val) override; // 03

// members
Variable value; // 78
std::string value; // 78
std::string type; // 98
bool compound; // B8
};
static_assert(sizeof(ValueResponse) == 0xE0);
static_assert(sizeof(ValueResponse) == 0xC0);

struct VariablesResponse : public Response
{
Expand Down

0 comments on commit 34e50a9

Please sign in to comment.