Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Just name not acronym (nw) | 2015-12-31 | 1 | -1/+1 | |
| | |||||
* | Revert "removing MESS brand and making MAME a name not acronym (nw)" | 2015-12-31 | 1 | -1/+1 | |
| | | | | | | Too contraversial for now :) This reverts commit 47bf03513e4fc8a916144fcc43fc9826aa03bedb. | ||||
* | removing MESS brand and making MAME a name not acronym (nw) | 2015-12-31 | 1 | -1/+1 | |
| | |||||
* | Fix UI message for software selection | 2015-12-28 | 1 | -2/+2 | |
| | |||||
* | cleanup (nw) | 2015-12-25 | 1 | -2/+0 | |
| | |||||
* | removed auto_bitmap_ind*_alloc and auto_bitmap_rgb32_alloc and replaced with ↵ | 2015-12-17 | 4 | -5/+5 | |
| | | | | | | | std::unique_ptr (nw) auto_alloc_array to unique_ptr Added make_unique_clear | ||||
* | macro removal INLINE -> static inline (nw) | 2015-12-12 | 1 | -1/+1 | |
| | |||||
* | tagmap_t to std::unordered_map or std::unordered_set where applicable (nw) | 2015-12-09 | 3 | -15/+15 | |
| | |||||
* | clang-modernize part 1 (nw) | 2015-12-03 | 39 | -490/+490 | |
| | |||||
* | Initial conversion of core to C++14. Note that compilers are now limited to ↵ | 2015-12-03 | 2 | -2/+2 | |
| | | | | GCC 4.9.0 and up, Clang 3.4.0 and up, and VS2013 and up [Miodrag Milanovic] | ||||
* | Cleanups and version bumpmame0168 | 2015-11-25 | 2 | -6/+6 | |
| | |||||
* | Fixed some suggestions by ReSharper C++ (nw) | 2015-11-14 | 2 | -5/+5 | |
| | |||||
* | More cleanups (nw) | 2015-11-11 | 3 | -5/+5 | |
| | |||||
* | Some cleanups and init fixes with help of ReSharper C++ (nw) | 2015-11-11 | 14 | -42/+19 | |
| | |||||
* | nw, more PVS-Studio fixes | 2015-11-09 | 1 | -1/+0 | |
| | |||||
* | Rename *.c -> *.cpp in our source (nw) | 2015-11-08 | 20 | -0/+0 | |
| | |||||
* | Relaxed emu.h a bit, should make compile a bit faster (nw) | 2015-11-05 | 20 | -1/+23 | |
| | |||||
* | Removed mongoose due to restricted license and webserver wip till code is ↵ | 2015-11-04 | 1 | -1/+0 | |
| | | | | restructured (nw) | ||||
* | making logerror part of machine and device classes [Miodrag Milanovic] | 2015-11-01 | 5 | -13/+13 | |
| | | | | display tag of device that logged message | ||||
* | Cleanup and version bumpmame0167 | 2015-10-28 | 3 | -22/+22 | |
| | |||||
* | Removed some unused variables (nw) | 2015-10-27 | 2 | -3/+0 | |
| | |||||
* | Cleanup | 2015-10-26 | 1 | -14/+14 | |
| | | | | | - some renamings - reverted one unwanted change in vector.fx | ||||
* | Fixed Beam Width Options | 2015-10-25 | 1 | -6/+6 | |
| | | | | - beam width min. and max. could not be set higher than 1.0 in UI | ||||
* | Experimental Dynamic Beam Width | 2015-10-25 | 1 | -8/+46 | |
| | | | | | | | | | | - replace beam width by beam min. and beam max. width, this makes it possible to create a linear dynamic beam width by the amount of intensity of the beam - added beam intensity weight, this adds an exponential factor to the dynamic beam width (values greater than 0 will push larger intensities more than smaller intensities) - fixed displayed ratio of vector points (zero-length lines) | ||||
* | Fixed Vector Intensity and Flicker | 2015-10-25 | 1 | -2/+2 | |
| | | | | | | - fixed vector intensity in vector.fx - fixed vector flicker in vector.c - change range of vector flicker option from 0 - 100 to 0.00 - 1.00 | ||||
* | pty: seems ok (linux only) | 2015-10-13 | 4 | -1/+79 | |
| | |||||
* | nw - I do not know why this was there, but it seems dumb. | 2015-08-19 | 1 | -3/+0 | |
| | |||||
* | Added seconds() and attoseconds() to attotime and prefixed members with | 2015-08-15 | 3 | -8/+8 | |
| | | | | | | | m_. Rewrote code accessing members to use seconds() and attoseconds(). The changes were triggered by a test how gcc __int128_t would perform as the internal representation. This test revealed that the current implementation is still faster. (nw) | ||||
* | change flags from GAME_ to MACHINE_ | 2015-07-29 | 2 | -35/+35 | |
| | | | | this better fits the drivers from MESS (which have always illogically used the GAME_ flags despite not being games) and also fits fine with arcade machines. | ||||
* | didn't merge last time (nw) | 2015-07-14 | 1 | -1/+1 | |
| | |||||
* | Make 'game' and 'machine' match. | 2015-07-08 | 1 | -10/+26 | |
| | | | | | It makes no sense to say a CHD for this 'game' is incorrect when using CHD images of HDs for a computer system in MESS (nw) | ||||
* | blame balrog for this :) (NW) | 2015-07-08 | 2 | -2/+2 | |
| | |||||
* | audit.c: fixed a crash occurring when trying to mount | 2015-06-03 | 1 | -0/+1 | |
| | | | | | | a CHD from the internal UI. [Fabio Priuli] out of whatsnew: this is the correct fix which replaces the hacky workaround that I had submitted earlier today... | ||||
* | ui: when accessing the internal File Manager for a system | 2015-06-02 | 1 | -1/+2 | |
| | | | | | with available softlists, let the softlist item be highlighted by default to make navigation faster [Fabio Priuli] | ||||
* | ui: Fix corruption when a game status and a pop message appear at the same time. | 2015-05-31 | 1 | -2/+3 | |
| | |||||
* | Another round of -Wextra -Wdouble-promotion fixes. (nw) | 2015-05-20 | 3 | -5/+5 | |
| | |||||
* | Another round of -Wextra -Wdouble-promotion fixes. (nw) | 2015-05-20 | 1 | -19/+19 | |
| | |||||
* | lot more updated (nw) | 2015-05-11 | 39 | -192/+78 | |
| | |||||
* | Added dummy license headers for EMU section (nw) | 2015-05-07 | 39 | -0/+78 | |
| | |||||
* | moved all to std::string (nw) | 2015-04-22 | 20 | -322/+323 | |
| | |||||
* | ui: avoid infinite loop when word-wrapping | 2015-04-21 | 1 | -0/+3 | |
| | | | | | | | | This commit fixes an infinite loop in draw_text_full(), happening when there is not enough space to draw even a single a char before trying to word-wrap. Signed-off-by: Luca Bruno <lucab@debian.org> | ||||
* | more astring -> std::string (nw) | 2015-04-19 | 6 | -31/+31 | |
| | |||||
* | removed bool conversion and implicit empty check (nw) | 2015-04-19 | 4 | -5/+5 | |
| | |||||
* | more conversions to std::string (nw) | 2015-04-19 | 1 | -4/+4 | |
| | |||||
* | Replace dynamic_array with std::vector [O. Galibert] | 2015-04-14 | 1 | -1/+1 | |
| | |||||
* | updated astring constructors to have just one string param, to be more like ↵ | 2015-04-13 | 1 | -1/+1 | |
| | | | | std::string (nw) | ||||
* | string -> str rename due to future conflicts (nw) | 2015-04-12 | 4 | -141/+141 | |
| | |||||
* | string -> str part 1 (nw) | 2015-04-12 | 2 | -81/+81 | |
| | |||||
* | There is no implicit conversion to char* in std::string (nw) | 2015-04-12 | 15 | -67/+67 | |
| | |||||
* | cstr() - > c_str() as preparation for move to std::string (nw) | 2015-04-11 | 9 | -22/+22 | |
| |