mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-25 04:11:42 -04:00
windows fix v2
This commit is contained in:
parent
25d4f2e5c0
commit
655154518a
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ void ipcPipeThread(HANDLE pipe) {
|
|||
if (ReadFile(pipe, buffer, sizeof(buffer) - 1, &read, nullptr)) {
|
||||
buffer[read] = '\0';
|
||||
|
||||
std::string reply = InternalLoader::processRawIPC(buffer);
|
||||
std::string reply = InternalLoader::processRawIPC((void*)pipe, buffer);
|
||||
|
||||
DWORD written;
|
||||
WriteFile(pipe, reply.c_str(), reply.size(), &written, nullptr);
|
||||
|
|
Loading…
Add table
Reference in a new issue