diff options
author | 2024-11-24 03:52:26 +1100 | |
---|---|---|
committer | 2024-11-24 03:52:26 +1100 | |
commit | 146c0b9191a739ed6289c44ca5a5dd6db5f79c1f (patch) | |
tree | 7e3fed017711c49ac675063fee7dd3c31e30a7b8 /src/devices/bus/a2bus/mouse.h | |
parent | 7b8072ce88a0ed7c39ec91a44642fb8eddd338c6 (diff) |
srcclean and cleanup
Started fixing #include guards that don't match the file path. There
are still plenty more in src/devices, but it's a start. When there are
none left in src/devices and src/mame, a CI task can be added to catch
them.
Diffstat (limited to 'src/devices/bus/a2bus/mouse.h')
-rw-r--r-- | src/devices/bus/a2bus/mouse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/a2bus/mouse.h b/src/devices/bus/a2bus/mouse.h index 3208a353296..1f9669409ce 100644 --- a/src/devices/bus/a2bus/mouse.h +++ b/src/devices/bus/a2bus/mouse.h @@ -8,8 +8,8 @@ *********************************************************************/ -#ifndef MAME_DEVICES_A2BUS_MOUSE_H -#define MAME_DEVICES_A2BUS_MOUSE_H +#ifndef MAME_BUS_A2BUS_MOUSE_H +#define MAME_BUS_A2BUS_MOUSE_H #pragma once @@ -17,4 +17,4 @@ DECLARE_DEVICE_TYPE(A2BUS_MOUSE, device_a2bus_card_interface) -#endif // MAME_DEVICES_A2BUS_MOUSE_H +#endif // MAME_BUS_A2BUS_MOUSE_H |