]> git.mxchange.org Git - simgear.git/commitdiff
Use an unsigned vs. signed short to double our element capacity for higher
authorcurt <curt>
Wed, 12 Oct 2005 16:43:26 +0000 (16:43 +0000)
committercurt <curt>
Wed, 12 Oct 2005 16:43:26 +0000 (16:43 +0000)
resolution scenery.

simgear/io/sg_binobj.cxx

index a655d2312ecfa1deb4e7523f90939313566a01f2..dc951830fcaec958f3da10bb1e4edb6c84313593 100644 (file)
@@ -240,8 +240,8 @@ static void read_object( gzFile fp,
        if ( nbytes > buf.get_size() ) { buf.resize( nbytes ); }
        char *ptr = buf.get_ptr();
        sgReadBytes( fp, nbytes, ptr );
-       int count = nbytes / (idx_size * sizeof(short));
-       short *sptr = (short *)ptr;
+       int count = nbytes / (idx_size * sizeof(unsigned short));
+       unsigned short *sptr = (unsigned short *)ptr;
        int_list vs; vs.clear();
        int_list ns; ns.clear();
        int_list cs; cs.clear();