fix build

This commit is contained in:
sp2xdev
2025-05-04 15:53:46 -07:00
parent f40c382903
commit b3cee1dfcc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ namespace acio2emu {
} }
}; };
IOBHandle::IOBHandle(std::wstring device) : device_(device) { IOBHandle::IOBHandle(LPCWSTR device) : device_(device) {
nodes_[0] = std::make_unique<MasterNode>(this); nodes_[0] = std::make_unique<MasterNode>(this);
} }
+1 -1
View File
@@ -26,7 +26,7 @@ namespace acio2emu {
void forward_packet_(const Packet &packet); void forward_packet_(const Packet &packet);
public: public:
IOBHandle(std::wstring device); IOBHandle(LPCWSTR device);
bool register_node(std::unique_ptr<Node> node); bool register_node(std::unique_ptr<Node> node);
int number_of_nodes() const; int number_of_nodes() const;