使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
Archivist
/
raylib-src
镜像自地址
https://github.com/raysan5/raylib
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
24
百科
动态
浏览代码
Fix GetCurrentMonitor comments.
pull/4812/head
Kaluub
1 个月前
父节点
f1385f3aec
当前提交
c7efac920c
共有
7 个文件被更改
,包括
7 次插入
和
7 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
src/platforms/rcore_android.c
+1
-1
src/platforms/rcore_desktop_glfw.c
+1
-1
src/platforms/rcore_desktop_rgfw.c
+1
-1
src/platforms/rcore_desktop_sdl.c
+1
-1
src/platforms/rcore_drm.c
+1
-1
src/platforms/rcore_template.c
+1
-1
src/platforms/rcore_web.c
+ 1
- 1
src/platforms/rcore_android.c
查看文件
@ -431,7 +431,7 @@ int GetMonitorCount(void)
return
1
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
TRACELOG
(
LOG_WARNING
,
"
GetCurrentMonitor() not implemented on target platform
"
)
;
+ 1
- 1
src/platforms/rcore_desktop_glfw.c
查看文件
@ -736,7 +736,7 @@ int GetMonitorCount(void)
return
monitorCount
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
int
index
=
0
;
+ 1
- 1
src/platforms/rcore_desktop_rgfw.c
查看文件
@ -651,7 +651,7 @@ int GetMonitorCount(void)
return
count
;
}
// Get
number of monitors
// Get
current monitor where window is placed
int
GetCurrentMonitor
(
void
)
{
RGFW_monitor
*
mons
=
RGFW_getMonitors
(
)
;
+ 1
- 1
src/platforms/rcore_desktop_sdl.c
查看文件
@ -914,7 +914,7 @@ int GetMonitorCount(void)
return
monitorCount
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
int
currentMonitor
=
0
;
+ 1
- 1
src/platforms/rcore_drm.c
查看文件
@ -371,7 +371,7 @@ int GetMonitorCount(void)
return
1
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
TRACELOG
(
LOG_WARNING
,
"
GetCurrentMonitor() not implemented on target platform
"
)
;
+ 1
- 1
src/platforms/rcore_template.c
查看文件
@ -208,7 +208,7 @@ int GetMonitorCount(void)
return
1
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
TRACELOG
(
LOG_WARNING
,
"
GetCurrentMonitor() not implemented on target platform
"
)
;
+ 1
- 1
src/platforms/rcore_web.c
查看文件
@ -709,7 +709,7 @@ int GetMonitorCount(void)
return
1
;
}
/
/
Get
number
of
monitors
/
/
Get
current
monitor
where
window
is
placed
int
GetCurrentMonitor
(
void
)
{
TRACELOG
(
LOG_WARNING
,
"
GetCurrentMonitor() not implemented on target platform
"
)
;
撰写
预览
正在加载...
取消
保存