From 3225ebe6147ff2b6b64738a5d66e1fb270f8aba3 Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 6 Oct 2004 00:09:23 +0000 Subject: Use rint instead of lround to make it build on 2.0. --- emulators/dosbox/patches/patch-aa | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 emulators/dosbox/patches/patch-aa (limited to 'emulators/dosbox/patches/patch-aa') diff --git a/emulators/dosbox/patches/patch-aa b/emulators/dosbox/patches/patch-aa new file mode 100644 index 00000000000..cce56d3b0f9 --- /dev/null +++ b/emulators/dosbox/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.3 2004/10/06 00:09:23 wiz Exp $ + +--- src/dos/cdrom_image.cpp.orig 2004-08-23 11:35:15.000000000 +0200 ++++ src/dos/cdrom_image.cpp +@@ -111,7 +111,7 @@ int CDROM_Interface_Image::AudioFile::ge + while (true) { + int success = Sound_Seek(sample, (unsigned int)(shift + time)); + if (!success) { +- if (time == 1) return lround((double)shift * 176.4f); ++ if (time == 1) return rint((double)shift * 176.4f); + shift += time >> 1; + time = 1; + } else { -- cgit v1.2.3