diff options
| author | Indrajith K L | 2025-11-05 02:24:08 +0530 |
|---|---|---|
| committer | GitHub | 2025-11-05 02:24:08 +0530 |
| commit | 8c4b587a2347a911d165f0b4afcce116970ad7e5 (patch) | |
| tree | 9116d4b6e0e0063e6b509c78f81354cb5faf3d74 /src/main.c | |
| parent | 10c22d35678f96e722f25a12badca98febb2921e (diff) | |
| parent | 7f014770c0ad7f20c70cca1b81b71751d9fbc7c5 (diff) | |
| download | reilua-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |
