Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change TAS script buffer to 4MiB #441

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BunnymodXT/simulation_ipc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ namespace simulation_ipc {

char command[1024];

// 1 MiB should cover reasonably large scripts.
// 4 MiB should cover reasonably large scripts.
// If it starts with a NULL byte then there's no script, simply run the command.
char script[1 * 1024 * 1024];
char script[4 * 1024 * 1024];
};

// On the client, the last received message. On the server, the message to send.
Expand Down