summaryrefslogtreecommitdiffhomepage
path: root/src/rcore.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-09-23 00:18:47 +0200
committerRay <[email protected]>2021-09-23 00:18:47 +0200
commit00a763ea4485bfa00c3b65c500a466c77e2cc170 (patch)
tree365cced2a243483e835df59922ae27652cbe4612 /src/rcore.c
parentdcd289d931d3c9d836c23068e1420930b566db6a (diff)
downloadraylib-00a763ea4485bfa00c3b65c500a466c77e2cc170.tar.gz
raylib-00a763ea4485bfa00c3b65c500a466c77e2cc170.zip
Reviewed some TODO comments
Diffstat (limited to 'src/rcore.c')
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index 3b549ca8..66c734a1 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -1081,7 +1081,7 @@ bool IsWindowMaximized(void)
bool IsWindowFocused(void)
{
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
- return ((CORE.Window.flags & FLAG_WINDOW_UNFOCUSED) == 0); // TODO!
+ return ((CORE.Window.flags & FLAG_WINDOW_UNFOCUSED) == 0);
#else
return true;
#endif