--- nono/vm/tvram.h 2026/04/29 17:05:28 1.1.1.11 +++ nono/vm/tvram.h 2026/04/29 17:05:59 1.1.1.14 @@ -12,7 +12,7 @@ #include "planevram.h" -class Renderer; +class VideoCtlrDevice; class TVRAMDevice : public PlaneVRAMDevice { @@ -63,9 +63,11 @@ class TVRAMDevice : public PlaneVRAMDevi struct tvram tvram {}; - Renderer *renderer {}; + VideoCtlrDevice *videoctlr {}; + + static const busdata wait; }; -static inline TVRAMDevice *GetTVRAMDevice() { +inline TVRAMDevice *GetTVRAMDevice() { return Object::GetObject(OBJ_PLANEVRAM); }