--- nono/host/driver.cpp 2026/04/29 17:05:18 1.1.1.2 +++ nono/host/driver.cpp 2026/04/29 17:05:56 1.1.1.5 @@ -12,7 +12,7 @@ #include "hostdevice.h" // コンストラクタ -Driver::Driver(HostDevice *hostdev_, const char *drivername_) +Driver::Driver(HostDevice *hostdev_, const std::string& drivername_) : inherited(OBJ_NONE) { hostdev = hostdev_; @@ -36,7 +36,7 @@ Driver::~Driver() // ドライバ初期化 bool -Driver::InitDriver() +Driver::InitDriver(bool startup) { putmsg(1, "created"); return true; @@ -51,6 +51,6 @@ Driver::Dispatch(int udata) // モニタ (ドライバ依存情報のみ) void -Driver::MonitorUpdateMD(TextScreen& screen) +Driver::MonitorUpdateMD(TextScreen& screen, int y) { }