mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-13 15:56:00 +00:00
Qualify calls to format
C++20 introduces `std::format` and we `using namespace std`, so some of these would be ambiguous in C++20.
This commit is contained in:
@@ -1755,7 +1755,7 @@ void run() {
|
||||
perfect_linewidth = 0;
|
||||
shot::shot_aa = 2;
|
||||
vid.linewidth *= 2;
|
||||
shot::take(format("bringris-%04d.png", id++), [] { draw_screen(vid.xres, false); });
|
||||
shot::take(hr::format("bringris-%04d.png", id++), [] { draw_screen(vid.xres, false); });
|
||||
vid.linewidth /= 2;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user