Commit Graph

45444 Commits

Author SHA1 Message Date
Miodrag Milanovic
d20fa27c1b fix vs2015 build (nw) 2016-07-31 16:13:12 +02:00
cracyc
a006c68ef5 fix build (nw) 2016-07-31 09:04:28 -05:00
Miodrag Milanovic
d91322223b fixed clang (nw) 2016-07-31 15:59:39 +02:00
Vas Crabb
6bf9f2fd9c macros should be turned into constexpr or they can't be used in many situations they were previously use in
the silly _partialNN functions are necessary because MSVC doesn't support C++14 properly
2016-07-31 23:50:41 +10:00
Miodrag Milanovic
8594237ba6 imgtool fix (nw) 2016-07-31 15:49:22 +02:00
Miodrag Milanovic
185f5059fb algorithm-> utility where appropriate, fix imgtool (nw) 2016-07-31 15:37:37 +02:00
Miodrag Milanovic
184f7e5605 win compile fix due to previous changes (nw) 2016-07-31 15:31:22 +02:00
Miodrag Milanovic
2a87e99b21 fix osx compile (nw) 2016-07-31 15:24:28 +02:00
angelosa
ac36da95aa New NOT_WORKING
---------------
Ring & Ball (?) [Hammy]
2016-07-31 15:14:27 +02:00
Miodrag Milanovic
aeadbfe2b1 fix linux compile (nw) 2016-07-31 14:59:01 +02:00
Vas Crabb
c703235246 Merge pull request #1165 from npwoods/diimage_add_format
Created device_image_interface::add_format() protected member and made device_image_interface::m_formatlist be private
2016-07-31 22:54:28 +10:00
Nathan Woods
b1b29cd44e Created device_image_interface::add_format() protected member and made device_image_interface::m_formatlist be private 2016-07-31 08:47:49 -04:00
Miodrag Milanovic
9667c6a8cc std::min and std:max instead of MIN and MAX, also some more macros converted to inline functions (nw) 2016-07-31 14:41:02 +02:00
Vas Crabb
69ac4affc8 Merge pull request #1163 from npwoods/remove_public_has_been_created
Removed device_image_interface::has_been_created()
2016-07-31 22:24:23 +10:00
briantro
dad9bf7b2a itech32.cpp: Restore unique sound rom - NW
Restore unique sound rom do cut-n-paste overwrite and not paying attention.
2016-07-30 22:31:08 -05:00
Robbbert
90bf6de1da Fixed the build. 2016-07-31 10:56:34 +10:00
Nathan Woods
9902a3bb99 Merge branch 'master' into remove_public_has_been_created 2016-07-30 19:42:35 -04:00
Vas Crabb
4aa24a866e Merge pull request #1164 from aviloria/patch-4
Update spanish strings
2016-07-31 09:40:01 +10:00
Vas Crabb
49e5c0d10e Merge pull request #1162 from npwoods/msvc_keyboardipp_workaround
Added workaround for MSVC warning
2016-07-31 09:28:38 +10:00
aviloria
5572388eb6 Update spanish strings 2016-07-31 00:08:50 +02:00
R. Belmont
a14d9322ba Merge pull request #1160 from shattered/_9e9d61f
dvk_ksm: unbreak host comms, add PORT_CHARs to its keyboard
2016-07-30 16:22:50 -04:00
arbee
21ca7784d1 tv950: new redumps, fleshed out the skeleton, needs a CRTC expert to draw anything. [R. Belmont, Al Kossow] 2016-07-30 16:09:14 -04:00
Nathan Woods
5f1bb05263 Removed device_image_interface::has_been_created()
This method was necessary long ago when devices didn't have distinct load and create paths, which has since been addressed
2016-07-30 14:41:09 -04:00
cracyc
33245e7945 luaengine: (nw) 2016-07-30 12:25:10 -05:00
Robbbert
995794b80c AUSSIEBYTE: Replaced timer with clock device. (nw) 2016-07-31 02:28:34 +10:00
Nathan Woods
049b7ad0fb Added workaround for MSVC warning 2016-07-30 12:16:11 -04:00
Robbbert
f632efca45 BIGBOARD2: Various improvements. (nw) 2016-07-31 02:12:42 +10:00
Dirk Best
6735af0124 apricot: use device_buffered_serial_interface and
device_matrix_keyboard_interface for the hle keyboard emulation to
reduce code duplication and implement a fifo for the keyboard
2016-07-30 16:56:11 +02:00
Sergey Svishchev
26e1dd57af ms7004: add PORT_CHAR's 2016-07-30 16:34:57 +03:00
Sergey Svishchev
1f5beba4f8 dvk_ksm: unbreak host communications after commit 97721a4 2016-07-30 16:34:57 +03:00
Vas Crabb
d59b0a1a51 Merge pull request #1158 from npwoods/misc_cleanups
Miscellaneous cleanups
2016-07-30 23:31:59 +10:00
Nathan Woods
0df4a2339a Three times is a charm 2016-07-30 09:28:48 -04:00
Nathan Woods
eb79ffac88 <+cuavas> you've changed the function, you get to change it properly! 2016-07-30 09:15:27 -04:00
Nathan Woods
cfd4397f3c Miscellaneous cleanups:
- Removed some c_str() calls when using util::zippath_parent()
- Removed the error code return value from set_image_filename()
- Consolidated error code translation (osd_file::error ==> image_error_t) in image_error_from_file_error()
- Other cosmetic improvements
2016-07-30 08:56:37 -04:00
cracyc
8ab75d7f4f luaengine: use reference (nw) 2016-07-30 07:30:16 -05:00
Dirk Best
ca1f8ecc00 apricot: rename apricot_keyboard_device to avoid clashes 2016-07-30 13:29:46 +02:00
hap
8bb468a3db al520ex: use correct key name for Ъ 2016-07-30 13:20:59 +02:00
hap
16f3f32cb2 gx4000: don't use IPT_KEYBOARD for console pause button 2016-07-30 12:41:42 +02:00
Vas Crabb
5fe3b907af make buffered serial a mixin to promote reuse [Vas Crabb] 2016-07-30 20:34:16 +10:00
Robbbert
7816c98a87 oops... (nw) 2016-07-30 20:06:45 +10:00
Robbbert
cd759f8c19 AMPRO: Replaced timer with clock device (nw) 2016-07-30 19:39:44 +10:00
Dirk Best
c597f40d83 apricot: create bus interface for the keyboard interface, make hle keyboard emulation a bus device 2016-07-30 11:17:07 +02:00
Dirk Best
412ca1644c apricot: move expansion bus to its own directory 2016-07-30 11:17:03 +02:00
Vas Crabb
159fa2ef9e Attempt to prevent GCC optimising away global_alloc_clear (MT06335) 2016-07-30 18:03:24 +10:00
jbu
8821dd2733 alto2: add speaker sound
Some games, e.g. pinball-easy, use UTILOUT to generate buzzer sound.
2016-07-30 09:17:54 +02:00
Robbbert
d3d3066357 ALTOS5: fixed banking, all disks can boot. 2016-07-30 16:59:19 +10:00
Ivan Vangelista
95cba94386 esq5505.cpp: attempt to fix 32bit crash (nw) 2016-07-30 07:47:15 +02:00
Ivan Vangelista
db94674786 dmndrby.cpp: attempt to fix crash on 32bit (nw) 2016-07-30 07:36:59 +02:00
cracyc
1cbf9f069e luaengine: std::string here too (nw) 2016-07-29 21:50:29 -05:00
Vas Crabb
9c9ee49c9f Merge pull request #1156 from npwoods/zippath_strstring
Converted a number of zippath calls that took 'const char *' to std::string
2016-07-30 12:25:22 +10:00