summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorIndrajith K L2025-11-05 02:24:08 +0530
committerGitHub2025-11-05 02:24:08 +0530
commit8c4b587a2347a911d165f0b4afcce116970ad7e5 (patch)
tree9116d4b6e0e0063e6b509c78f81354cb5faf3d74 /src/main.c
parent10c22d35678f96e722f25a12badca98febb2921e (diff)
parent7f014770c0ad7f20c70cca1b81b71751d9fbc7c5 (diff)
downloadreilua-enhanced-8c4b587a2347a911d165f0b4afcce116970ad7e5.tar.gz
reilua-enhanced-8c4b587a2347a911d165f0b4afcce116970ad7e5.tar.bz2
reilua-enhanced-8c4b587a2347a911d165f0b4afcce116970ad7e5.zip
Merge pull request #8 from cooljith91112/feature/font-rendering
Fix font antialiasing and improve UX
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index d4d8fd2..72dbdca 100644
--- a/src/main.c
+++ b/src/main.c
@@ -142,7 +142,7 @@ int main( int argn, const char** argc ) {
splashInit();
bool splashDone = false;
- while ( !splashDone && !WindowShouldClose() ) {
+ while ( !splashDone ) {
float delta = GetFrameTime();
splashDone = splashUpdate( delta );
splashDraw();