Pages tagged with "log"

This is a list of pages that have been tagged with “log”.

PageDescriptionTags
logerror() The logerror() function is used to output text to the standard error.log file (if the log option is enabled) and is also visible in a debugger error output window. Syntax Declaration Declared in src/emu/mame.h as void CLIB_DECL logerror(const char *format, ...) ATTR_PRINTF(1,2); , , ,
popmessage() The popmessage() function is used to display on-screen info at the bottom of the emulated display. Syntax Declaration Declared in src/emu/mame.h as void CLIB_DECL popmessage(const char *format, ...) ATTR_PRINTF(1,2); Parameters * *format -- Pointer to a const char with the text to be printed. Supports printf-style parameters. Can be NULL, in this case the displayed message is cleared immediately. * ... -- A list of variables that are referenced in the text. , , ,