Browse code

Removed unused fields in uxn.h

cancel authored on 02/01/2022 23:26:13 • Andrew Alderwick committed on 02/01/2022 23:26:13
Showing 1 changed files
... ...
@@ -18,7 +18,7 @@ typedef unsigned int Uint32;
18 18
 #define PAGE_PROGRAM 0x0100
19 19
 
20 20
 typedef struct {
21
-	Uint8 ptr, kptr, error;
21
+	Uint8 ptr;
22 22
 	Uint8 dat[256];
23 23
 } Stack;
24 24
 
... ...
@@ -36,7 +36,7 @@ typedef struct Device {
36 36
 } Device;
37 37
 
38 38
 typedef struct Uxn {
39
-	Stack wst, rst, *src, *dst;
39
+	Stack wst, rst;
40 40
 	Memory ram;
41 41
 	Device dev[16];
42 42
 } Uxn;