summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/driver.h')
-rw-r--r--src/emu/driver.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/emu/driver.h b/src/emu/driver.h
index 86bcbf9af7e..d755d995762 100644
--- a/src/emu/driver.h
+++ b/src/emu/driver.h
@@ -2,20 +2,19 @@
driver.h
- Include this with all MAME files. Includes all the core system pieces.
+ Definitions relating to game drivers.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
***************************************************************************/
-// temporary: redirect #include "driver.h" to #include "emu.h"
-#ifndef __EMU_H__
-#include "emu.h"
-#else
-
#pragma once
+#ifndef __EMU_H__
+#error Dont include this file directly; include emu.h instead.
+#endif
+
#ifndef __DRIVER_H__
#define __DRIVER_H__
@@ -143,6 +142,4 @@ void driver_list_get_approx_matches(const game_driver * const driverlist[], cons
int driver_list_get_count(const game_driver * const driverlist[]);
-#endif /* __DRIVER_H__ */
-
#endif