b4a22e2feeab15c87630402e3a20cd7bb7926faf is the first bad commit
commit b4a22e2feeab15c87630402e3a20cd7bb7926faf
Author: Robert Müller
Date: Tue Feb 6 21:41:59 2024 +0100
Refactor client state handling in menus
#8156protocol7::CNetMsg_Sv_VoteSet
.
The 0.7 clients would for example receive VOTE_END_FAIL
instead of the co...detect.h
for the Wii endianness? Last time I saw some log messages from this project it said "unknown endianness"detect.h
doesn't allow compiling with unknown endiannessstruct Foo {
int bar;
static Foo new(int bar) {
return {
.bar = bar
};
}
int gimme_bar(void) {
return this->bar;
}
};
int main() {
Foo foo = Foo::new(69);
int val = foo.gimme_bar(); // 69
return 0;
}
i think this would be enough for me xdFILE *f = fopen(f);
defer fclose(f);
...
...
CMenus::Render
function, also for the demo player since #8156.
swap chain image was not ready to be copied
and the view becomes weirdly streched over the resized screen when I resize the window while the rendering is active:
!screenshot_2024-04-14_13-09-34
This state persists after rendering is finished until the client is restarted.
The rendered video is messed up because the image data does not have the expected size.
M...thread '<unnamed>' panicked at twgame/src/net_msg.rs:470:39:
not yet implemented
thread '<unnamed>' panicked at twgame/src/net_msg.rs:474:38:
not yet implemented
thread '<unnamed>' panicked at validator/src/lib.rs:858:21:
assertion failed: team.load
Unknown column 'hasCP' in 'where clause'
on MySQL/MariaDB, but worked fine with SQLite. The query has now been updated to work with both. Closes #8214
tab
button and have this possibility to click or scroll scoreboard item ?cl_demo_assume_race 0
, the score was not shown as points when the last server that the client connected to had a race gametype.
Move the implementation for cl_demo_assume_race
together with the rest of the demo server info initialization in the CClient::DemoPlayer_Play
function.