summaryrefslogtreecommitdiff
path: root/emu/device.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-12-30 16:55:06 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-12-30 16:55:06 +0100
commitaff63a211e9b1e397adb9dce726d8153beb96dcd (patch)
tree28f5b85fde65cff328fad0ea1d24fe93e5678b2e /emu/device.h
parent53569267c59204f56e4c0fddb669536d28706e5c (diff)
download6502-aff63a211e9b1e397adb9dce726d8153beb96dcd.tar.gz
6502-aff63a211e9b1e397adb9dce726d8153beb96dcd.tar.bz2
- 7seg is a subdevice of the VIA 6522 now, registering to
a small sub-bus
Diffstat (limited to 'emu/device.h')
-rw-r--r--emu/device.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/emu/device.h b/emu/device.h
index 81a1dd4..32285ca 100644
--- a/emu/device.h
+++ b/emu/device.h
@@ -21,9 +21,6 @@ typedef struct device_vtable_t {
typedef struct device_t {
device_vtable_t const *vtable;
char *name;
-#ifdef WITH_GUI
- SDL_Renderer *renderer;
-#endif
} device_t;
void device_init( device_t *device, const char *name );