From 532d14fdb70ad99da30e41e32c21a9022f4ba2fb Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 5 Jul 2005 11:24:38 +0000 Subject: [PATCH] changing some things back to size_t git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5498 d7cf8633-e32d-0410-b094-e92efae38249 --- snd_main.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snd_main.h b/snd_main.h index c6b80c22..d2e37f39 100644 --- a/snd_main.h +++ b/snd_main.h @@ -26,8 +26,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. typedef struct { - int length; - int offset; + size_t length; + size_t offset; qbyte data[4]; // variable sized } sfxbuffer_t; @@ -59,7 +59,7 @@ struct sfx_s unsigned int flags; // cf SFXFLAG_* defines snd_format_t format; int loopstart; - int total_length; + size_t total_length; const snd_fetcher_t *fetcher; void *fetcher_data; // Per-sfx data for the sound fetching functions }; -- 2.39.2