mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 18:46:43 +00:00
Fix websocket tostring name
This commit is contained in:
parent
2f604f3b42
commit
9f6e54b087
1 changed files with 2 additions and 2 deletions
|
@ -171,11 +171,11 @@ public class WebSocketClient : IComponent
|
|||
var buffer = ToObject(L);
|
||||
if (buffer is not null)
|
||||
{
|
||||
L.PushString("GPUBuffer ({0:X})", (ulong)&buffer);
|
||||
L.PushString("WebSocket ({0:X})", (ulong)&buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
L.PushString("GPUBuffer (closed)");
|
||||
L.PushString("WebSocket (closed)");
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue