1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 13:32:59 +00:00

Use printf %lld, not %Ld

comply with ISO C++
This commit is contained in:
Locria Cyber
2023-02-01 12:53:09 +00:00
parent 253f0deaa6
commit 99e3b25560
4 changed files with 6 additions and 6 deletions

View File

@@ -191,7 +191,7 @@ void preparegraph() {
current_logistic.setRT(factor * graph_R, factor * graph_T);
saved_logistic = current_logistic;
// for(int u=0; u<MAXDIST; u++) iprintf("%d/%Ld\n", edgetally[u], tally[u]);
// for(int u=0; u<MAXDIST; u++) iprintf("%d/%lld\n", edgetally[u], tally[u]);
fix_logistic_parameters(current_logistic, loglik_logistic, "logistic", 1e-6);
writestats();