summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd (follow)
Commit message (Collapse)AuthorAgeFilesLines
* added missing \n to some fatalerror() calls (no whatsnew) Oliver Stöneberg2012-09-071-1/+1
|
* Fixed default SDL OSX UI toggle key name. [Curt Coder] Curt Coder2012-08-291-1/+1
|
* Fixed for an SDL sound bug surrounding use of -speed and pausing frequently ↵ Scott Stone2012-08-291-1/+1
| | | | causing corrupt sound. [Antonio Giner]
* Added gcc-4[567]-generic entries to sdl.mak to select gcc with DISTRO= switch. Couriersud2012-08-201-1/+16
|
* added missing \n to some fatalerror() calls (no whatsnew) Oliver Stöneberg2012-08-184-8/+8
|
* fixed debugger window to just use fixed-pitch font and removed fallback ↵ Oliver Stöneberg2012-08-181-10/+5
| | | | since CreateFont will still return a font based on other characteristics when the face was not found (no whatsnew)
* Made UI mouse cursor optional (default is off for now), in games with ↵ Miodrag Milanovic2012-08-171-2/+1
| | | | clickable artwork cursor is visible, application is not taking mouse control anymore (no whatsnew)
* Added internal mouse cursor visible in menus and when clickable artwork is ↵ Miodrag Milanovic2012-08-153-5/+2
| | | | used [Miodrag Milanovic]
* SDL: Fix -prescale option for SDL builds [Matthias Reichl] R. Belmont2012-08-111-1/+1
|
* removed redundant interlocked function wrappers from Windows code (no whatsnew) Oliver Stöneberg2012-08-072-54/+14
|
* Clean-ups and version bump Miodrag Milanovic2012-07-302-4/+4
|
* removed unnecessary strlen() usage (no whatsnew) Oliver Stöneberg2012-07-271-1/+1
|
* allow "windowname" in win_create_window_ex_utf8() to be NULL to match ↵ Oliver Stöneberg2012-07-271-7/+10
| | | | behavior of CreateWindowEx() (no whatsnew)
* SDL: more compile fixes (nw) R. Belmont2012-07-262-4/+4
|
* Fix some non-Windows compiles (nw) R. Belmont2012-07-261-0/+3
|
* fixed version check in windows.mak (no whatsnew) Oliver Stöneberg2012-07-261-1/+1
|
* SDL: some compile fixes for OS X and Windows (nw) R. Belmont2012-07-261-0/+4
|
* SDL: Use XInput to allow multiple lightguns on Linux/*BSD targets. [Markus ↵ R. Belmont2012-07-255-1/+463
| | | | Rathgeb, based on a patch by SpritesMods.com]
* Clean-ups and version bumpmame0146u3 Miodrag Milanovic2012-07-151-1/+1
|
* SDL: Greatly improve drawing speed of GTK+ debugger windows [Fabrice Bellet] R. Belmont2012-07-131-43/+51
|
* fix for profiler memory leaks mtbug #04094 (no whatsnew) Miodrag Milanovic2012-07-091-1/+3
|
* SDL: Clean up GCC 4.7 test so it's the same path on all targets (nw) R. Belmont2012-06-191-15/+10
|
* Make it compile on windows mingw 4.7.x (no whatsnew) Miodrag Milanovic2012-06-182-1/+6
|
* SDL: Support newer Linux distros using GCC 4.7 [R. Belmont] R. Belmont2012-06-151-0/+11
|
* fix mistake by me a while ago: sr(syncrefresh) clashed with emuopts ↵ Michaël Banaan Ananas2012-06-102-2/+2
| | | | sr(samplerate)
* fixed building with Visual Studio 11 RC smf-2012-06-021-0/+3
|
* SDL: More OS/2 fixes [K.O. Myung-Hun] R. Belmont2012-05-311-1/+1
|
* SDL: Preliminary Haiku OS support [PulkoMandy] R. Belmont2012-05-287-10/+38
|
* SDL: fix for OS/2 compile [K.O. Myung-Hun] R. Belmont2012-05-271-1/+1
|
* fixed some "comparison is always true/false" warnings reported by clang by ↵ Miodrag Milanovic2012-05-201-1/+1
| | | | | Firewave in timer.c I have commented not removed lines that are always false
* fix for -video ddraw causing crash on 16bit video output (no whatsnew) Miodrag Milanovic2012-05-191-2/+2
|
* Fixed display of icon in windows (no whatsnew) Miodrag Milanovic2012-05-153-3/+3
|
* end of line was missing (nw) Miodrag Milanovic2012-05-151-1/+1
|
* MAME windows executable gets it's own icon (no whatsnew) Miodrag Milanovic2012-05-152-0/+2
|
* fixes for building with visual studio 11 beta. smf-2012-05-102-2/+1
|
* Don't optimize tms57002 on OS X PowerPC builds [Couriersud] R. Belmont2012-05-081-0/+1
|
* Clean-ups and version bumpmame0145u8 Miodrag Milanovic2012-05-071-1/+1
|
* removed -static for sdl windows build (no whatsnew) Miodrag Milanovic2012-05-041-1/+1
|
* -static is not needed anymore for latest tools (no whatsnew) Miodrag Milanovic2012-05-031-1/+1
|
* Sync with MESS (no whatsnew) Miodrag Milanovic2012-05-031-19/+19
|
* ioport.c C++ conversion. Mostly internal changes, with no Aaron Giles2012-05-033-43/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | intended differences from previous behavior. For drivers, the main change is that input_port_read() no longer exists. Instead, the port must be fetched from the appropriate device, and then read() is called. For member functions, this is actually simpler/cleaner: value = ioport("tag")->read() For legacy functions which have a driver_data state, it goes: value = state->ioport("tag")->read() For other legacy functions, they need to fetch the root device: value = machine.root_device().ioport("tag")->read() The other big change for drivers is that IPT_VBLANK is gone. Instead, it has been replaced by a device line callback on the screen device. There's a new macro PORT_VBLANK("tag") which automatically points things to the right spot. Here's a set of imperfect search & replace strings to convert the input_port_read calls and fix up IPT_VBLANK: input_port_read( *\( *)(machine\(\)) *, *([^)]+ *\)) ioport\1\3->read\(\) input_port_read( *\( *)(.*machine[()]*) *, *([^)]+ *\)) \2\.root_device\(\)\.ioport\1\3->read\(\) (state = .*driver_data[^}]+)space->machine\(\)\.root_device\(\)\. \1state-> (state = .*driver_data[^}]+)device->machine\(\)\.root_device\(\)\. \1state-> input_port_read_safe( *\( *)(machine\(\)) *, *([^,]+), *([^)]+\)) ioport\1\3->read_safe\(\4\) IPT_VBLANK( *\)) IPT_CUSTOM\1 PORT_VBLANK("screen")
* Killed unicows (no whatsnew) Miodrag Milanovic2012-04-281-5/+0
|
* Same change for sdl build on windows (no whatsnew) Miodrag Milanovic2012-04-241-1/+1
|
* Fix linking for mingw GCC 4.6.3 and upper using libwinpthread (no whatsnew) Miodrag Milanovic2012-04-241-1/+1
|
* Clean-ups and version bumpmame0145u7 Angelo Salese2012-04-222-2/+2
|
* Broke dependency between mcr68 and mcr by creating Aaron Giles2012-04-171-0/+3
| | | | | | | | | | | | sound devices for each of the Midway 8-bit sound boards. This will also aid in eventually hooking them up to pinballs. Enhanced the mixer interface support to allow for more than one output line. To use this you need to use the MCFG_MIXER_ROUTE macro instead of MCFG_SOUND_ROUTE so that the mixer output index can be specified. See midway_ssio_device for an example.
* Hooray for templates. Aaron Giles2012-04-123-234/+18
|
* Sync with MESS (no whatsnew) Miodrag Milanovic2012-04-111-23/+23
|
* SDL: fix build on non-OS X targets (nw) R. Belmont2012-04-091-2/+1
|
* SDL: Got rid of some code duplication between the _unix and _macosx ↵ Wilbert Pol2012-04-095-178/+37
| | | | implementations for sdlptty and sdlmisc. (nw)