summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/lib/osdobj_common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/lib/osdobj_common.cpp')
-rw-r--r--src/osd/modules/lib/osdobj_common.cpp6
1 files changed, 3 insertions, 3 deletions
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<ui::menu_item> 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);