Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
esrrhs committed Dec 3, 2020
1 parent 4bbb9a9 commit 5dfbcd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ long long find_luastate_breakpoint(std::string hook_func) {
if (right == std::string::npos) {
ret = ret.substr(key.length());
} else {
ret = ret.substr(key.length(), right - (left + key.length()));
ret = ret.substr(key.length(), right - key.length());
}

ret.erase(std::remove(ret.begin(), ret.end(), '\n'), ret.end());

0 comments on commit 5dfbcd2

Please sign in to comment.