summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/softlist_dev.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* check characters in softlist setnames, fix errors (nw) Vas Crabb2016-09-121-28/+35
|
* Increased max length of parent name to 16, for evaluation purposes. (nw) Robbbert2016-09-091-1/+1
|
* srcclean and translation regeneration Vas Crabb2016-08-291-2/+2
|
* Fixed an issue that caused softlist device descriptions to be blank Nathan Woods2016-08-111-3/+3
| | | | This also fixes a likely undiscovered issue where the filename in softlist XML parse error messages was also blank
* Changing 'bool iswild' to 'const bool iswild' Nathan Woods2016-08-101-1/+1
|
* Converted more softlist code to use std::string Nathan Woods2016-08-101-6/+6
|
* More softlist-related conversions of strings to std::string Nathan Woods2016-08-081-6/+6
|
* Redo of split of src/emu/softlist.[cpp|h] Nathan Woods2016-08-021-0/+523
This is a redo of the split first submitted in #137, with the following differences: * The newly refactored rom_entry data structure is used * I've kept the refactored softlist code in src/emu, in order to defer the mechanical process of moving it * I've kept includes of softlist[_dev].h out of diimage.h, so that changes to either do not trigger an emu.h recompilation * Obviously, this goes against the latest master