src/driver.cpp
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6451 7baba06b4b85
child 6720 35756db7e577
child 7541 0b79c8fb5e7f
--- a/src/driver.cpp	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/driver.cpp	Mon Mar 19 12:38:16 2007 +0000
@@ -30,17 +30,17 @@
 #include "video/cocoa_v.h"
 #include "video/win32_v.h"
 
-typedef struct DriverDesc {
+struct DriverDesc {
 	const char* name;
 	const char* longname;
 	const HalCommonDriver* drv;
-} DriverDesc;
+};
 
-typedef struct DriverClass {
+struct DriverClass {
 	const DriverDesc *descs;
 	const char *name;
 	const HalCommonDriver** drv;
-} DriverClass;
+};
 
 
 #define M(x, y, z) { x, y, (const HalCommonDriver *)(void *)z }