diff options
author | 2016-08-29 02:02:04 +1000 | |
---|---|---|
committer | 2016-08-29 02:02:04 +1000 | |
commit | c960435d3e22ff596dd0f1c7f02ec1d3269336e5 (patch) | |
tree | 387e677a4fd1aaf7f97a921e877980aca6ccfe06 /src/emu/romentry.cpp | |
parent | 2101fe044ef61f056a6b64dd8b5875b9652419f8 (diff) |
srcclean and translation regeneration
Diffstat (limited to 'src/emu/romentry.cpp')
-rw-r--r-- | src/emu/romentry.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/romentry.cpp b/src/emu/romentry.cpp index 106a559e927..57e005adb37 100644 --- a/src/emu/romentry.cpp +++ b/src/emu/romentry.cpp @@ -2,9 +2,9 @@ // copyright-holders:Nicola Salmoria,Aaron Giles /********************************************************************* - romentry.cpp + romentry.cpp - ROM loading functions. + ROM loading functions. *********************************************************************/ @@ -13,13 +13,13 @@ /*************************************************************************** - HELPERS + HELPERS ***************************************************************************/ //------------------------------------------------- // hashdata_from_tiny_rom_entry - calculates the -// proper hashdata string from the value in the -// tiny_rom_entry +// proper hashdata string from the value in the +// tiny_rom_entry //------------------------------------------------- static std::string hashdata_from_tiny_rom_entry(const tiny_rom_entry &ent) @@ -29,7 +29,7 @@ static std::string hashdata_from_tiny_rom_entry(const tiny_rom_entry &ent) { case ROMENTRYTYPE_FILL: case ROMENTRYTYPE_COPY: - // for these types, tiny_rom_entry::hashdata is an integer typecasted to a pointer + // for these types, tiny_rom_entry::hashdata is an integer typecasted to a pointer result = string_format("0x%x", (unsigned)(FPTR)ent.hashdata); break; @@ -43,7 +43,7 @@ static std::string hashdata_from_tiny_rom_entry(const tiny_rom_entry &ent) /*************************************************************************** - ROM ENTRY + ROM ENTRY ***************************************************************************/ //------------------------------------------------- |