Small stuff

This commit is contained in:
Miloslav Ciz 2025-02-20 20:08:55 +01:00
parent 0cb91eb9ea
commit 65f0e44760
3 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,9 @@
=========== GENERAL ============== =========== GENERAL ==============
- add indication when CP is taken: in 1st man view it may be unclear if CP was
taken or not otherwise
- on 1st map the camera is obscured by the wall at the start, fix it somehow
(not the best first impression)
- culling is very slow now, it showed that distance bailout can accelerate it - culling is very slow now, it showed that distance bailout can accelerate it
a lot, try to make a more accurate bailaout and see if it's faster (watch a lot, try to make a more accurate bailaout and see if it's faster (watch
out for bugs due to false positives) out for bugs due to false positives)

View file

@ -32,7 +32,7 @@ static const char *LCR_texts[] =
"main menu", "main menu",
"play map", "play map",
"view repl", "view repl",
"play repl", "race repl",
#define LCR_TEXTS_MAIN_MENU 5 #define LCR_TEXTS_MAIN_MENU 5
"camera: $", "camera: $",
@ -95,7 +95,7 @@ static const char *LCR_internalDataFile =
// MAP 1: // MAP 1:
"#MLicar1;4321 0 " "#MLicar1;4321 0 "
":*B3mL:!x6G:+L2H:+D38" // start, finish, CPs ":*B2mL:!x6G:+L2H:+D38" // start, finish, CPs
// pillars: // pillars:
":nw0w2L:f151:m151" ":nw0w2L:f151:m151"
":nz0w2L:f151:m151" ":nz0w2L:f151:m151"

View file

@ -1813,8 +1813,7 @@ void LCR_rendererDrawMenu(const char *tabName,const char **items,
#if LCR_SETTING_POTATO_GRAPHICS #if LCR_SETTING_POTATO_GRAPHICS
); );
#else #else
^ (effect & ^ (effect & 0x41c3));
0x20c3));
effect += 5 + i % 4; effect += 5 + i % 4;
#endif #endif