6 Star 0 Fork 9

src-openEuler/stb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1196.patch 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
peijiankang 提交于 2022-12-06 09:24 . Init package for openEuler
From 49c16b0c2a4efa72d0ce6ea05d3fa7d9e8fc6cba Mon Sep 17 00:00:00 2001
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
Date: Thu, 19 Aug 2021 12:57:27 -0400
Subject: [PATCH] Add missing initializer braces in stb_easy_font.h
---
stb_easy_font.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stb_easy_font.h b/stb_easy_font.h
index b66325847b..5f7511560a 100644
--- a/stb_easy_font.h
+++ b/stb_easy_font.h
@@ -202,7 +202,7 @@ static int stb_easy_font_print(float x, float y, char *text, unsigned char color
float start_x = x;
int offset = 0;
- stb_easy_font_color c = { 255,255,255,255 }; // use structure copying to avoid needing depending on memcpy()
+ stb_easy_font_color c = { { 255,255,255,255 } }; // use structure copying to avoid needing depending on memcpy()
if (color) { c.c[0] = color[0]; c.c[1] = color[1]; c.c[2] = color[2]; c.c[3] = color[3]; }
while (*text && offset < vbuf_size) {
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/stb.git
git@gitee.com:src-openeuler/stb.git
src-openeuler
stb
stb
master

搜索帮助