From ddb290d5f615019c33c42b8d94e5a5254cabcf33 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 13:13:17 +0200 Subject: NOTICE (TYPE NAME CONSOLIDATION) Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8 --- src/osd/modules/lib/osdobj_common.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/osd/modules/lib/osdobj_common.cpp') diff --git a/src/osd/modules/lib/osdobj_common.cpp b/src/osd/modules/lib/osdobj_common.cpp index 351b87aa269..bbf8c88f19f 100644 --- a/src/osd/modules/lib/osdobj_common.cpp +++ b/src/osd/modules/lib/osdobj_common.cpp @@ -514,7 +514,7 @@ void osd_common_t::debugger_update() // stream //------------------------------------------------- -void osd_common_t::update_audio_stream(const INT16 *buffer, int samples_this_frame) +void osd_common_t::update_audio_stream(const int16_t *buffer, int samples_this_frame) { // // This method is called whenever the system has new audio data to stream. @@ -579,7 +579,7 @@ std::vector osd_common_t::get_slider_list() // to an AVI recording if one is active //------------------------------------------------- -void osd_common_t::add_audio_to_recording(const INT16 *buffer, int samples_this_frame) +void osd_common_t::add_audio_to_recording(const int16_t *buffer, int samples_this_frame) { // Do nothing } @@ -623,7 +623,7 @@ bool osd_common_t::execute_command(const char *command) } -static void output_notifier_callback(const char *outname, INT32 value, void *param) +static void output_notifier_callback(const char *outname, int32_t value, void *param) { osd_common_t *osd = (osd_common_t*)param; osd->notify(outname, value); -- cgit v1.2.3-70-g09d2