Browse Source

Merge pull request #1151 from mcha-forks/mochaa/sg-linkage

sokol_gfx.h: fix _sg_u128 linkage visibility
Andre Weissflog 10 tháng trước cách đây
mục cha
commit
bfab51e798
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      sokol_gfx.h

+ 1 - 1
sokol_gfx.h

@@ -16598,7 +16598,7 @@ typedef struct {
     uint64_t lo, hi;
 } _sg_u128_t;
 
-_sg_u128_t _sg_u128(void) {
+_SOKOL_PRIVATE _sg_u128_t _sg_u128(void) {
     _sg_u128_t res;
     _sg_clear(&res, sizeof(res));
     return res;