| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Make osd_printf_* use util/strformat semantics. | 2019-09-26 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | (nw) This has been a long time coming but it's here at last. It should be easier now that logerror, popmessage and osd_printf_* behave like string_format and stream_format. Remember the differences from printf: * Any object with a stream out operator works with %s * %d, %i, %o, %x, %X, etc. work out the size by magic * No sign extending promotion to int for short/char * No widening/narrowing conversions for characters/strings * Same rules on all platforms, insulated from C runtime library * No format warnings from compiler * Assert in debug builds if number of arguments doesn't match format (nw) Also removed a pile of redundant c_str and string_format, and some workarounds for not being able to portably format 64-bit integers or long long. | ||||
| * | (nw) get rid of the rest of assert_always - it's better to be explicit about ↵ | 2019-09-20 | 1 | -2/+4 | |
| | | | | | what this thing is supposed to do | ||||
| * | general cleanup: | 2017-05-23 | 1 | -3/+4 | |
| | | | | | | | | | | | | * move rarely-used output and pty interfaces out of emu.h * consolidate and de-duplicate forward declarations, also remove some obsolete ones * clean up more #include guard macros * scope down a few more things (nw) Everyone, please keep forward declarations for src/emu in src/emu/emufwd.h - this will make it far easier to keep them in sync with declarations than having them scattered through all the other files. | ||||
| * | Introduce u8/u16/u32/u64/s8/s16/s32/s64 | 2016-11-19 | 1 | -33/+33 | |
| | | | | | | | | | | | | | * New abbreviated types are in osd and util namespaces, and also in global namespace for things that #include "emu.h" * Get rid of import of cstdint types to global namespace (C99 does this anyway) * Remove the cstdint types from everything in emu * Get rid of U64/S64 macros * Fix a bug in dps16 caused by incorrect use of macro * Fix debugcon not checking for "do " prefix case-insensitively * Fix a lot of messed up tabulation * More constexpr * Fix up many __names | ||||
| * | Do not use FUNC in delegate where applicable (nw) | 2016-11-06 | 1 | -1/+1 | |
| | | |||||
| * | Polymorphize input_device and input_class; move to separate source file (nw) | 2016-10-24 | 1 | -0/+947 | |
