




d9ce47d M Adorenarine, M Back in Time 3, M Ravillion, M 4 NoooBs, M Awayst, M Baby Aim 2.0, M Baby Aim 3.0, M Bootcamp #1, M Kopell, M MonkeyDream 2, M Next Grey, M Outbreak, M Pisull, M Planet Jupiter, M SimplePlay 2, M SimplePlay 3, M SimplePlay 4, M SimplePlay, M Slime, M The Shire, M Tropica, M Vizur 2, M rizek, A run_guys_25 - ddnet-maps







1






















































RequestHeader set Connecting-IP "%{REMOTE_ADDR}s"












11 123 3 120
012 301 123 2 (edited)
\t, they kinda work



c++
// left
std::cout << fmt::format("{:<6}.\n", 42);
// right
std::cout << fmt::format("{:>6}.\n", 42);
// center
std::cout << fmt::format("{:^6}.\n", 42);
Output:
42 .
42.
42 .

dbg_msg("test", "%10d %10d", a, b);




i wonder why noone said about that in stack overflow chain i was checking, issue was the same but in solutions only libraries and std::format from std23
%-12s for left alignment (use dash - after percent), default is right alignment apparently


11 123 3 120
012 301 123 2 (edited)

(edited)



(edited)

