From 128640144ad4c1349d996264b2c9ba51be0ce30e Mon Sep 17 00:00:00 2001 From: hap Date: Fri, 19 Jun 2020 12:38:41 +0200 Subject: [PATCH] emu: correct some file headers (nw) --- src/emu/addrmap.cpp | 2 +- src/emu/attotime.cpp | 2 +- src/emu/bookkeeping.cpp | 2 +- src/emu/config.cpp | 1 + src/emu/config.h | 1 + src/emu/crsshair.cpp | 3 ++- src/emu/crsshair.h | 1 + src/emu/debug/debugcon.cpp | 2 +- src/emu/debug/debughlp.cpp | 2 +- src/emu/debug/debugvw.cpp | 2 +- src/emu/debug/dvbpoints.cpp | 2 +- src/emu/debug/dvdisasm.cpp | 2 +- src/emu/debug/dvmemory.cpp | 2 +- src/emu/debug/dvstate.cpp | 2 +- src/emu/debug/dvtext.cpp | 2 +- src/emu/debug/dvwpoints.cpp | 2 +- src/emu/debug/textbuf.cpp | 2 +- src/emu/debugger.cpp | 3 ++- src/emu/debugger.h | 1 + src/emu/devcb.h | 1 + src/emu/devcpu.cpp | 2 +- src/emu/devcpu.h | 1 + src/emu/devdelegate.cpp | 2 +- src/emu/devdelegate.h | 1 + src/emu/devfind.cpp | 2 +- src/emu/device.ipp | 2 +- src/emu/didisasm.cpp | 2 +- src/emu/didisasm.h | 1 + src/emu/diexec.cpp | 2 +- src/emu/diexec.h | 1 + src/emu/digfx.cpp | 2 +- src/emu/diimage.cpp | 2 +- src/emu/dimemory.cpp | 2 +- src/emu/dinvram.cpp | 2 +- src/emu/dipty.cpp | 2 +- src/emu/dirtc.cpp | 2 +- src/emu/disound.cpp | 2 +- src/emu/distate.cpp | 2 +- src/emu/divideo.cpp | 2 +- src/emu/divtlb.cpp | 2 +- src/emu/drawgfx.cpp | 3 ++- src/emu/drawgfx.h | 1 + src/emu/driver.cpp | 2 +- src/emu/drivers/empty.cpp | 2 +- src/emu/drivers/testcpu.cpp | 2 +- src/emu/emualloc.cpp | 2 +- src/emu/emucore.cpp | 3 ++- src/emu/emucore.h | 1 + src/emu/emumem.cpp | 2 +- src/emu/emupal.cpp | 2 +- src/emu/fileio.cpp | 2 +- src/emu/http.cpp | 5 +++-- src/emu/http.h | 4 ++-- src/emu/image.cpp | 1 - src/emu/inpttype.ipp | 2 +- src/emu/input.cpp | 2 +- src/emu/ioport.cpp | 2 +- src/emu/machine.cpp | 2 +- src/emu/main.cpp | 4 ++-- src/emu/mconfig.cpp | 2 +- src/emu/memarray.cpp | 2 +- src/emu/network.cpp | 4 +++- src/emu/output.cpp | 3 ++- src/emu/parameters.cpp | 2 +- src/emu/profiler.cpp | 2 +- src/emu/recording.cpp | 2 +- src/emu/render.cpp | 2 +- src/emu/rendersw.hxx | 2 +- src/emu/rendfont.cpp | 2 +- src/emu/rendlay.cpp | 2 +- src/emu/rendutil.cpp | 2 +- src/emu/romload.cpp | 3 ++- src/emu/romload.h | 2 ++ src/emu/save.cpp | 2 +- src/emu/schedule.cpp | 2 +- src/emu/screen.h | 1 + src/emu/sound.cpp | 2 +- src/emu/uiinput.cpp | 1 + src/emu/uiinput.h | 1 + src/emu/video/generic.cpp | 2 +- src/emu/video/resnet.cpp | 2 +- src/emu/video/rgbgen.cpp | 2 +- src/emu/video/rgbsse.cpp | 2 +- src/emu/video/rgbvmx.cpp | 2 +- src/frontend/mame/ui/ui.cpp | 2 +- 85 files changed, 97 insertions(+), 73 deletions(-) diff --git a/src/emu/addrmap.cpp b/src/emu/addrmap.cpp index 97f46511237..61f7375d236 100644 --- a/src/emu/addrmap.cpp +++ b/src/emu/addrmap.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - addrmap.c + addrmap.cpp Macros and helper functions for handling address map definitions. diff --git a/src/emu/attotime.cpp b/src/emu/attotime.cpp index 6624872a4b6..c80219476ab 100644 --- a/src/emu/attotime.cpp +++ b/src/emu/attotime.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - attotime.c + attotime.cpp Support functions for working with attotime data. diff --git a/src/emu/bookkeeping.cpp b/src/emu/bookkeeping.cpp index 169d4d369ff..439dfe74f6b 100644 --- a/src/emu/bookkeeping.cpp +++ b/src/emu/bookkeeping.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nicola Salmoria /********************************************************************* - bookkeeping.c + bookkeeping.cpp Bookkeeping simple machine functions. diff --git a/src/emu/config.cpp b/src/emu/config.cpp index 19c88f8765d..abef9a4239b 100644 --- a/src/emu/config.cpp +++ b/src/emu/config.cpp @@ -5,6 +5,7 @@ config.cpp Configuration file I/O. + ***************************************************************************/ #include "emu.h" diff --git a/src/emu/config.h b/src/emu/config.h index e9f528a17cc..59742466e5d 100644 --- a/src/emu/config.h +++ b/src/emu/config.h @@ -5,6 +5,7 @@ config.h Wrappers for handling MAME configuration files + ***************************************************************************/ #ifndef MAME_EMU_CONFIG_H diff --git a/src/emu/crsshair.cpp b/src/emu/crsshair.cpp index 11bde091d15..a39782bcd63 100644 --- a/src/emu/crsshair.cpp +++ b/src/emu/crsshair.cpp @@ -2,9 +2,10 @@ // copyright-holders:Aaron Giles /*************************************************************************** - crsshair.c + crsshair.cpp Crosshair handling. + ***************************************************************************/ #include "emu.h" diff --git a/src/emu/crsshair.h b/src/emu/crsshair.h index c733f0afccf..05be9e08c30 100644 --- a/src/emu/crsshair.h +++ b/src/emu/crsshair.h @@ -5,6 +5,7 @@ crsshair.h Crosshair handling. + ***************************************************************************/ #ifndef MAME_EMU_CRSSHAIR_H diff --git a/src/emu/debug/debugcon.cpp b/src/emu/debug/debugcon.cpp index 0b4ae76c95b..88d1906c7f3 100644 --- a/src/emu/debug/debugcon.cpp +++ b/src/emu/debug/debugcon.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - debugcon.c + debugcon.cpp Debugger console engine. diff --git a/src/emu/debug/debughlp.cpp b/src/emu/debug/debughlp.cpp index 4a6b265628e..014c574c586 100644 --- a/src/emu/debug/debughlp.cpp +++ b/src/emu/debug/debughlp.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - debughlp.c + debughlp.cpp Debugger help engine. diff --git a/src/emu/debug/debugvw.cpp b/src/emu/debug/debugvw.cpp index d0d1375cf12..1d88f0485e2 100644 --- a/src/emu/debug/debugvw.cpp +++ b/src/emu/debug/debugvw.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - debugvw.c + debugvw.cpp Debugger view engine. diff --git a/src/emu/debug/dvbpoints.cpp b/src/emu/debug/dvbpoints.cpp index b4b03f75681..5a2cb7b0455 100644 --- a/src/emu/debug/dvbpoints.cpp +++ b/src/emu/debug/dvbpoints.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - dvbpoints.c + dvbpoints.cpp Breakpoint debugger view. diff --git a/src/emu/debug/dvdisasm.cpp b/src/emu/debug/dvdisasm.cpp index 385a0c98a65..ee8cd356a32 100644 --- a/src/emu/debug/dvdisasm.cpp +++ b/src/emu/debug/dvdisasm.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles, Olivier Galibert /********************************************************************* - dvdisasm.c + dvdisasm.cpp Disassembly debugger view. diff --git a/src/emu/debug/dvmemory.cpp b/src/emu/debug/dvmemory.cpp index eaffcac33b8..7f07e48b6ed 100644 --- a/src/emu/debug/dvmemory.cpp +++ b/src/emu/debug/dvmemory.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - dvmemory.c + dvmemory.cpp Memory debugger view. diff --git a/src/emu/debug/dvstate.cpp b/src/emu/debug/dvstate.cpp index 46956db2286..13c019be4d5 100644 --- a/src/emu/debug/dvstate.cpp +++ b/src/emu/debug/dvstate.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - dvstate.c + dvstate.cpp State debugger view. diff --git a/src/emu/debug/dvtext.cpp b/src/emu/debug/dvtext.cpp index e55a6b278e8..63ad674ec10 100644 --- a/src/emu/debug/dvtext.cpp +++ b/src/emu/debug/dvtext.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - dvtext.c + dvtext.cpp Debugger simple text-based views. diff --git a/src/emu/debug/dvwpoints.cpp b/src/emu/debug/dvwpoints.cpp index 28f2740a2f5..f177cdf6a5c 100644 --- a/src/emu/debug/dvwpoints.cpp +++ b/src/emu/debug/dvwpoints.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /********************************************************************* - dvwpoints.c + dvwpoints.cpp Watchpoint debugger view. diff --git a/src/emu/debug/textbuf.cpp b/src/emu/debug/textbuf.cpp index dd30beec210..bac5e45f604 100644 --- a/src/emu/debug/textbuf.cpp +++ b/src/emu/debug/textbuf.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - textbuf.c + textbuf.cpp Debugger text buffering engine. diff --git a/src/emu/debugger.cpp b/src/emu/debugger.cpp index 5e866057d61..6be6a75ab48 100644 --- a/src/emu/debugger.cpp +++ b/src/emu/debugger.cpp @@ -2,9 +2,10 @@ // copyright-holders:Nicola Salmoria, Aaron Giles /********************************************************************* - debugger.c + debugger.cpp Front-end debugger interfaces. + *********************************************************************/ #include "emu.h" diff --git a/src/emu/debugger.h b/src/emu/debugger.h index 95658eb8250..ce712dc2a9b 100644 --- a/src/emu/debugger.h +++ b/src/emu/debugger.h @@ -5,6 +5,7 @@ debugger.h General debugging interfaces + ****************************************************************************/ #ifndef MAME_EMU_DEBUGGER_H diff --git a/src/emu/devcb.h b/src/emu/devcb.h index a5c3acfd16c..f95f21c6fb8 100644 --- a/src/emu/devcb.h +++ b/src/emu/devcb.h @@ -7,6 +7,7 @@ Device callback interface helpers. ***************************************************************************/ + #ifndef MAME_EMU_DEVCB_H #define MAME_EMU_DEVCB_H diff --git a/src/emu/devcpu.cpp b/src/emu/devcpu.cpp index c7163460b95..03df7990a3d 100644 --- a/src/emu/devcpu.cpp +++ b/src/emu/devcpu.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - devcpu.c + devcpu.cpp CPU device definitions. diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h index 4cce31b5e38..6e9251ab3a9 100644 --- a/src/emu/devcpu.h +++ b/src/emu/devcpu.h @@ -7,6 +7,7 @@ CPU device definitions. ***************************************************************************/ + #ifndef MAME_EMU_DEVCPU_H #define MAME_EMU_DEVCPU_H diff --git a/src/emu/devdelegate.cpp b/src/emu/devdelegate.cpp index 0396b583706..9bc627f49f2 100644 --- a/src/emu/devdelegate.cpp +++ b/src/emu/devdelegate.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles, Vas Crabb /*************************************************************************** - devdelegate.c + devdelegate.cpp Delegates that are late-bound to MAME devices. diff --git a/src/emu/devdelegate.h b/src/emu/devdelegate.h index e6ae4fbb86e..1ba303d3ef3 100644 --- a/src/emu/devdelegate.h +++ b/src/emu/devdelegate.h @@ -7,6 +7,7 @@ Delegates that are late-bound to MAME devices. ***************************************************************************/ + #ifndef MAME_EMU_DEVDELEGATE_H #define MAME_EMU_DEVDELEGATE_H diff --git a/src/emu/devfind.cpp b/src/emu/devfind.cpp index 3cfcd17c223..380b246a666 100644 --- a/src/emu/devfind.cpp +++ b/src/emu/devfind.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - devfind.c + devfind.cpp Device finding template helpers. diff --git a/src/emu/device.ipp b/src/emu/device.ipp index 2d7a5a29b7b..12448724dcc 100644 --- a/src/emu/device.ipp +++ b/src/emu/device.ipp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - device.h + device.ipp Device interface functions. diff --git a/src/emu/didisasm.cpp b/src/emu/didisasm.cpp index cd30ae6fd9a..1acad7fb050 100644 --- a/src/emu/didisasm.cpp +++ b/src/emu/didisasm.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - didisasm.c + didisasm.cpp Device disasm interfaces. diff --git a/src/emu/didisasm.h b/src/emu/didisasm.h index 4a727dc7834..0813520a8c7 100644 --- a/src/emu/didisasm.h +++ b/src/emu/didisasm.h @@ -7,6 +7,7 @@ Device disassembly interfaces. ***************************************************************************/ + #ifndef MAME_EMU_DIDISASM_H #define MAME_EMU_DIDISASM_H diff --git a/src/emu/diexec.cpp b/src/emu/diexec.cpp index 825a4457c12..c142fd960e1 100644 --- a/src/emu/diexec.cpp +++ b/src/emu/diexec.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - diexec.c + diexec.cpp Device execution interfaces. diff --git a/src/emu/diexec.h b/src/emu/diexec.h index 75bdca5b229..55dc3d473df 100644 --- a/src/emu/diexec.h +++ b/src/emu/diexec.h @@ -7,6 +7,7 @@ Device execution interfaces. ***************************************************************************/ + #ifndef MAME_EMU_DIEXEC_H #define MAME_EMU_DIEXEC_H diff --git a/src/emu/digfx.cpp b/src/emu/digfx.cpp index 904efe3759f..c0b25c69b22 100644 --- a/src/emu/digfx.cpp +++ b/src/emu/digfx.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nicola Salmoria, Aaron Giles, Alex W. Jackson /*************************************************************************** - digfx.c + digfx.cpp Device graphics interfaces. diff --git a/src/emu/diimage.cpp b/src/emu/diimage.cpp index d8235569d1d..1631ddf9a1a 100644 --- a/src/emu/diimage.cpp +++ b/src/emu/diimage.cpp @@ -2,7 +2,7 @@ // copyright-holders:Miodrag Milanovic /*************************************************************************** - diimage.c + diimage.cpp Device image interfaces. diff --git a/src/emu/dimemory.cpp b/src/emu/dimemory.cpp index 30a3e395afa..15d70ba8c1d 100644 --- a/src/emu/dimemory.cpp +++ b/src/emu/dimemory.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - dimemory.c + dimemory.cpp Device memory interfaces. diff --git a/src/emu/dinvram.cpp b/src/emu/dinvram.cpp index 4767d7d633c..c2ba7408849 100644 --- a/src/emu/dinvram.cpp +++ b/src/emu/dinvram.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - dinvram.c + dinvram.cpp Device NVRAM interfaces. diff --git a/src/emu/dipty.cpp b/src/emu/dipty.cpp index 0a894cfbfec..925113edd08 100644 --- a/src/emu/dipty.cpp +++ b/src/emu/dipty.cpp @@ -2,7 +2,7 @@ // copyright-holders:F.Ulivi /*************************************************************************** - dipty.h + dipty.cpp Device PTY interface diff --git a/src/emu/dirtc.cpp b/src/emu/dirtc.cpp index 20ebbbacef8..f3c61dede01 100644 --- a/src/emu/dirtc.cpp +++ b/src/emu/dirtc.cpp @@ -2,7 +2,7 @@ // copyright-holders:Curt Coder /*************************************************************************** - dirtc.c + dirtc.cpp Device Real Time Clock interfaces. diff --git a/src/emu/disound.cpp b/src/emu/disound.cpp index a48ad44c40b..4d7d60265b6 100644 --- a/src/emu/disound.cpp +++ b/src/emu/disound.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - disound.c + disound.cpp Device sound interfaces. diff --git a/src/emu/distate.cpp b/src/emu/distate.cpp index b96d3c6aad3..770a19292c9 100644 --- a/src/emu/distate.cpp +++ b/src/emu/distate.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - distate.c + distate.cpp Device state interfaces. diff --git a/src/emu/divideo.cpp b/src/emu/divideo.cpp index 61287e0e35d..b894f11fb5d 100644 --- a/src/emu/divideo.cpp +++ b/src/emu/divideo.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - divideo.c + divideo.cpp Device video interfaces. diff --git a/src/emu/divtlb.cpp b/src/emu/divtlb.cpp index fea9d22c107..a09abd5300a 100644 --- a/src/emu/divtlb.cpp +++ b/src/emu/divtlb.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - divtlb.c + divtlb.cpp Device generic virtual TLB interface. diff --git a/src/emu/drawgfx.cpp b/src/emu/drawgfx.cpp index fe909496342..94333cf6b87 100644 --- a/src/emu/drawgfx.cpp +++ b/src/emu/drawgfx.cpp @@ -2,9 +2,10 @@ // copyright-holders:Nicola Salmoria, Aaron Giles /********************************************************************* - drawgfx.c + drawgfx.cpp Generic graphic functions. + *********************************************************************/ #include "emu.h" diff --git a/src/emu/drawgfx.h b/src/emu/drawgfx.h index 164e452b193..4b5be8a4fa3 100644 --- a/src/emu/drawgfx.h +++ b/src/emu/drawgfx.h @@ -5,6 +5,7 @@ drawgfx.h Generic graphic functions. + ********************************************************************** How to use priority-masked drawing (formerly pdrawgfx): diff --git a/src/emu/driver.cpp b/src/emu/driver.cpp index 6bd504437f8..eb128669f5c 100644 --- a/src/emu/driver.cpp +++ b/src/emu/driver.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - driver.c + driver.cpp Core driver device base class. diff --git a/src/emu/drivers/empty.cpp b/src/emu/drivers/empty.cpp index faa17f60158..23cf5443013 100644 --- a/src/emu/drivers/empty.cpp +++ b/src/emu/drivers/empty.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /************************************************************************* - empty.c + empty.cpp Empty driver. diff --git a/src/emu/drivers/testcpu.cpp b/src/emu/drivers/testcpu.cpp index c0b4e86dfe2..574e6fc88b3 100644 --- a/src/emu/drivers/testcpu.cpp +++ b/src/emu/drivers/testcpu.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /************************************************************************* - testcpu.c + testcpu.cpp Example driver for performing CPU stress tests. diff --git a/src/emu/emualloc.cpp b/src/emu/emualloc.cpp index 60bbc11f01f..bc08416abb9 100644 --- a/src/emu/emualloc.cpp +++ b/src/emu/emualloc.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - emualloc.c + emualloc.cpp Memory allocation helpers for the core emulator. diff --git a/src/emu/emucore.cpp b/src/emu/emucore.cpp index 689d5fa1c37..84eb5cf11c6 100644 --- a/src/emu/emucore.cpp +++ b/src/emu/emucore.cpp @@ -2,10 +2,11 @@ // copyright-holders:Nicola Salmoria, Aaron Giles /*************************************************************************** - emucore.c + emucore.cpp Simple core functions that are defined in emucore.h and which may need to be accessed by other MAME-related tools. + ****************************************************************************/ #include "emu.h" diff --git a/src/emu/emucore.h b/src/emu/emucore.h index 8f0b8d1e150..b03612512cd 100644 --- a/src/emu/emucore.h +++ b/src/emu/emucore.h @@ -5,6 +5,7 @@ emucore.h General core utilities and macros used throughout the emulator. + ***************************************************************************/ #ifndef MAME_EMU_EMUCORE_H diff --git a/src/emu/emumem.cpp b/src/emu/emumem.cpp index 7a46ba7c039..5263207e867 100644 --- a/src/emu/emumem.cpp +++ b/src/emu/emumem.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles,Olivier Galibert /*************************************************************************** - emumem.c + emumem.cpp Functions which handle device memory access. diff --git a/src/emu/emupal.cpp b/src/emu/emupal.cpp index 6c027ffe611..9e1370a24ed 100644 --- a/src/emu/emupal.cpp +++ b/src/emu/emupal.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - emupal.c + emupal.cpp Palette device. diff --git a/src/emu/fileio.cpp b/src/emu/fileio.cpp index 5c392b01ffd..2233586fe6b 100644 --- a/src/emu/fileio.cpp +++ b/src/emu/fileio.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - fileio.c + fileio.cpp File access functions. diff --git a/src/emu/http.cpp b/src/emu/http.cpp index 48599258aaa..b384049a37f 100644 --- a/src/emu/http.cpp +++ b/src/emu/http.cpp @@ -2,11 +2,12 @@ // copyright-holders:Miodrag Milanovic /*************************************************************************** -http.cpp + http.cpp -HTTP server handling + HTTP server handling ***************************************************************************/ + #include "emu.h" #ifdef __sun diff --git a/src/emu/http.h b/src/emu/http.h index 3bfe1bd9b18..53631adbec5 100644 --- a/src/emu/http.h +++ b/src/emu/http.h @@ -2,9 +2,9 @@ // copyright-holders:Miodrag Milanovic /*************************************************************************** -http.cpp + http.h -HTTP server handling + HTTP server handling ***************************************************************************/ diff --git a/src/emu/image.cpp b/src/emu/image.cpp index 87d476056d7..4613d411c91 100644 --- a/src/emu/image.cpp +++ b/src/emu/image.cpp @@ -6,7 +6,6 @@ Core image functions and definitions. - ***************************************************************************/ #include diff --git a/src/emu/inpttype.ipp b/src/emu/inpttype.ipp index be4e5fdd5f2..cef6f36d1f4 100644 --- a/src/emu/inpttype.ipp +++ b/src/emu/inpttype.ipp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - inpttype.h + inpttype.ipp Array of core-defined input types and default mappings. diff --git a/src/emu/input.cpp b/src/emu/input.cpp index 7c564d46523..10d6f9f5664 100644 --- a/src/emu/input.cpp +++ b/src/emu/input.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - input.c + input.cpp Handle input from the user. diff --git a/src/emu/ioport.cpp b/src/emu/ioport.cpp index 06766134370..b929d51d406 100644 --- a/src/emu/ioport.cpp +++ b/src/emu/ioport.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - ioport.c + ioport.cpp Input/output port handling. diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index ac9f324a626..ada0f04672e 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - machine.c + machine.cpp Controls execution of the core MAME system. diff --git a/src/emu/main.cpp b/src/emu/main.cpp index 9255d9f7c67..e5467238238 100644 --- a/src/emu/main.cpp +++ b/src/emu/main.cpp @@ -2,9 +2,9 @@ // copyright-holders:Nicola Salmoria, Aaron Giles /*************************************************************************** -main.cpp + main.cpp -Controls execution of the core MAME system. + Controls execution of the core MAME system. ***************************************************************************/ diff --git a/src/emu/mconfig.cpp b/src/emu/mconfig.cpp index 0165978977c..cf162ae4f06 100644 --- a/src/emu/mconfig.cpp +++ b/src/emu/mconfig.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - mconfig.c + mconfig.cpp Machine configuration macros and functions. diff --git a/src/emu/memarray.cpp b/src/emu/memarray.cpp index 50bd270fd4f..92069a1f4cb 100644 --- a/src/emu/memarray.cpp +++ b/src/emu/memarray.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - memarray.c + memarray.cpp Generic memory array accessor helper. diff --git a/src/emu/network.cpp b/src/emu/network.cpp index 701db850b58..1456013a74f 100644 --- a/src/emu/network.cpp +++ b/src/emu/network.cpp @@ -2,10 +2,12 @@ // copyright-holders:Carl /*************************************************************************** - network.c + network.cpp Core network functions and definitions. + ***************************************************************************/ + #include #include "emu.h" diff --git a/src/emu/output.cpp b/src/emu/output.cpp index d9e6b1a0198..d374ef1e9a8 100644 --- a/src/emu/output.cpp +++ b/src/emu/output.cpp @@ -2,9 +2,10 @@ // copyright-holders:Nicola Salmoria, Aaron Giles, Vas Crabb /*************************************************************************** - output.c + output.cpp General purpose output routines. + ***************************************************************************/ #include "emu.h" diff --git a/src/emu/parameters.cpp b/src/emu/parameters.cpp index 9a0a38a74ce..8b02cd47ebf 100644 --- a/src/emu/parameters.cpp +++ b/src/emu/parameters.cpp @@ -2,7 +2,7 @@ // copyright-holders:Olivier Galibert, Aaron Giles /*************************************************************************** - parameters.c + parameters.cpp Per-game parameters handling. diff --git a/src/emu/profiler.cpp b/src/emu/profiler.cpp index c3c0ea05608..173e2f4d767 100644 --- a/src/emu/profiler.cpp +++ b/src/emu/profiler.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - profiler.c + profiler.cpp Functions to manage profiling of MAME execution. diff --git a/src/emu/recording.cpp b/src/emu/recording.cpp index e4f1861fa9e..2e134f03f4a 100644 --- a/src/emu/recording.cpp +++ b/src/emu/recording.cpp @@ -4,7 +4,7 @@ recording.cpp - Core MAME video routines. + MAME AVI/MNG video recording routines. ***************************************************************************/ diff --git a/src/emu/render.cpp b/src/emu/render.cpp index fb019544d6d..dc46c9d4e44 100644 --- a/src/emu/render.cpp +++ b/src/emu/render.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - render.c + render.cpp Core rendering system. diff --git a/src/emu/rendersw.hxx b/src/emu/rendersw.hxx index 896d7dbfe18..37cdbc5b736 100644 --- a/src/emu/rendersw.hxx +++ b/src/emu/rendersw.hxx @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - rendersw.inc + rendersw.hxx Software-only rasterization system. diff --git a/src/emu/rendfont.cpp b/src/emu/rendfont.cpp index 788f84a60ca..7b69a6e97e5 100644 --- a/src/emu/rendfont.cpp +++ b/src/emu/rendfont.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles, Vas Crabb /*************************************************************************** - rendfont.c + rendfont.cpp Rendering system font management. diff --git a/src/emu/rendlay.cpp b/src/emu/rendlay.cpp index ea227b2c77b..a7d6411a1e9 100644 --- a/src/emu/rendlay.cpp +++ b/src/emu/rendlay.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles, Vas Crabb /*************************************************************************** - rendlay.c + rendlay.cpp Core rendering layout parser and manager. diff --git a/src/emu/rendutil.cpp b/src/emu/rendutil.cpp index 7a1aa9193bb..8baf312d224 100644 --- a/src/emu/rendutil.cpp +++ b/src/emu/rendutil.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - rendutil.c + rendutil.cpp Core rendering utilities. diff --git a/src/emu/romload.cpp b/src/emu/romload.cpp index 63c518a13fb..ee8cd2feb2a 100644 --- a/src/emu/romload.cpp +++ b/src/emu/romload.cpp @@ -5,6 +5,7 @@ romload.cpp ROM loading functions. + *********************************************************************/ #include "emu.h" @@ -31,7 +32,7 @@ /*************************************************************************** HELPERS - ***************************************************************************/ +****************************************************************************/ namespace { diff --git a/src/emu/romload.h b/src/emu/romload.h index ca725f0e0fb..0a558a790b1 100644 --- a/src/emu/romload.h +++ b/src/emu/romload.h @@ -5,7 +5,9 @@ romload.h ROM loading functions. + *********************************************************************/ + #ifndef MAME_EMU_ROMLOAD_H #define MAME_EMU_ROMLOAD_H diff --git a/src/emu/save.cpp b/src/emu/save.cpp index 615578d80f2..b2456d17b6f 100644 --- a/src/emu/save.cpp +++ b/src/emu/save.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - save.c + save.cpp Save state management functions. diff --git a/src/emu/schedule.cpp b/src/emu/schedule.cpp index 34a8e0ed2e4..410ca6e9b7d 100644 --- a/src/emu/schedule.cpp +++ b/src/emu/schedule.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - schedule.c + schedule.cpp Core device execution and scheduling engine. diff --git a/src/emu/screen.h b/src/emu/screen.h index df2d2913cd1..a5527e72226 100644 --- a/src/emu/screen.h +++ b/src/emu/screen.h @@ -7,6 +7,7 @@ Core MAME screen device. ***************************************************************************/ + #ifndef MAME_EMU_SCREEN_H #define MAME_EMU_SCREEN_H diff --git a/src/emu/sound.cpp b/src/emu/sound.cpp index c876431c41b..b59b2304edd 100644 --- a/src/emu/sound.cpp +++ b/src/emu/sound.cpp @@ -2,7 +2,7 @@ // copyright-holders:Aaron Giles /*************************************************************************** - sound.c + sound.cpp Core sound functions and definitions. diff --git a/src/emu/uiinput.cpp b/src/emu/uiinput.cpp index e6b0920e926..99ccc8b536f 100644 --- a/src/emu/uiinput.cpp +++ b/src/emu/uiinput.cpp @@ -5,6 +5,7 @@ uiinput.cpp Internal MAME user interface input state. + ***************************************************************************/ #include "emu.h" diff --git a/src/emu/uiinput.h b/src/emu/uiinput.h index d62f0c8a9b9..85f4eb7cebd 100644 --- a/src/emu/uiinput.h +++ b/src/emu/uiinput.h @@ -5,6 +5,7 @@ uiinput.h Internal MAME user interface input state. + ***************************************************************************/ #ifndef MAME_EMU_UIINPUT_H diff --git a/src/emu/video/generic.cpp b/src/emu/video/generic.cpp index b43c9d8fa9d..3e100e16498 100644 --- a/src/emu/video/generic.cpp +++ b/src/emu/video/generic.cpp @@ -2,7 +2,7 @@ // copyright-holders:Nicola Salmoria /********************************************************************* - generic.c + generic.cpp Generic simple video functions. diff --git a/src/emu/video/resnet.cpp b/src/emu/video/resnet.cpp index f746f8448d6..fd5c3b19271 100644 --- a/src/emu/video/resnet.cpp +++ b/src/emu/video/resnet.cpp @@ -2,7 +2,7 @@ // copyright-holders:Couriersud /***************************************************************************** - resnet.c + resnet.cpp Compute weights for resistors networks. diff --git a/src/emu/video/rgbgen.cpp b/src/emu/video/rgbgen.cpp index db4cd95de61..2bc57654b1a 100644 --- a/src/emu/video/rgbgen.cpp +++ b/src/emu/video/rgbgen.cpp @@ -2,7 +2,7 @@ // copyright-holders:Vas Crabb, Ryan Holtz /*************************************************************************** - rgbgen.c + rgbgen.cpp General RGB utilities. diff --git a/src/emu/video/rgbsse.cpp b/src/emu/video/rgbsse.cpp index 719310ff144..2a229357c09 100644 --- a/src/emu/video/rgbsse.cpp +++ b/src/emu/video/rgbsse.cpp @@ -2,7 +2,7 @@ // copyright-holders:Vas Crabb, Ryan Holtz /*************************************************************************** - rgbsse.c + rgbsse.cpp SSE optimized RGB utilities. diff --git a/src/emu/video/rgbvmx.cpp b/src/emu/video/rgbvmx.cpp index 6de183b66c2..608f7024565 100644 --- a/src/emu/video/rgbvmx.cpp +++ b/src/emu/video/rgbvmx.cpp @@ -2,7 +2,7 @@ // copyright-holders:Vas Crabb, Ryan Holtz /*************************************************************************** - rgbsse.c + rgbvmx.cpp VMX/Altivec optimised RGB utilities. diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp index 232b1f974e0..225c908f066 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -1210,7 +1210,7 @@ uint32_t mame_ui_manager::handler_ingame(render_container &container) if (machine().ui_input().pressed(IPT_UI_RECORD_MNG)) machine().video().toggle_record_movie(movie_recording::format::MNG); - // toggle MNG recording + // toggle AVI recording if (machine().ui_input().pressed(IPT_UI_RECORD_AVI)) machine().video().toggle_record_movie(movie_recording::format::AVI);