Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Keşfet
Yardım
Giriş Yap
Archivist
/
raylib-src
şunun yansıması
https://github.com/raysan5/raylib
İzle
1
Yıldızla
0
Çatalla
0
Kod
Konular
0
Sürümler
24
Wiki
Aktivite
Kaynağa Gözat
REVIEWED: External libraries `sdefl` and `sinfl` to address
#5367
pull/5381/head
Ray
2 ay önce
ebeveyn
6a048b7afe
işleme
a568506265
2 değiştirilmiş dosya
ile
2 ekleme
ve
2 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+1
-1
src/external/sdefl.h
+1
-1
src/external/sinfl.h
+ 1
- 1
src/external/sdefl.h
Dosyayı Görüntüle
@ -198,7 +198,7 @@ extern int zsdeflate(struct sdefl *s, void *o, const void *i, int n, int lvl);
static
int
sdefl_ilog2
(
int
n
)
{
if
(
!
n
)
return
0
;
#
if
def _MSC_VER
#
if
defined(_MSC_VER) && !defined(__llvm__) && !defined(__INTEL_COMPILER)
/
/
@raysan5, address PR #5367
unsigned
long
msbp
=
0
;
_BitScanReverse
(
&
msbp
,
(
unsigned
long
)
n
)
;
return
(
int
)
msbp
;
+ 1
- 1
src/external/sinfl.h
Dosyayı Görüntüle
@ -171,7 +171,7 @@ extern int zsinflate(void *out, int cap, const void *in, int size);
static
int
sinfl_bsr
(
unsigned
n
)
{
#
if
def _MSC_VER
#
if
defined(_MSC_VER) && !defined(__llvm__) && !defined(__INTEL_COMPILER)
/
/
@raysan5, address PR #5367
unsigned
long
uln
=
0
;
_BitScanReverse
(
&
uln
,
n
)
;
return
(
int
)
(
uln
)
;
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet