1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-01 01:49:03 +00:00

more user-friendly launching

This commit is contained in:
Zeno Rogue
2025-12-05 10:43:15 +01:00
parent 7776c45777
commit 8c070e504d

View File

@@ -1653,7 +1653,7 @@ int readArgs() {
// #1: load the samples
if(argis("-som")) {
if(argis("-som-samples")) {
PHASE(3);
initialize_rv();
shift(); kohonen::loadsamples(args());
@@ -1849,6 +1849,15 @@ int readArgs() {
load_compressed(args());
}
else if(argis("-som")) {
PHASE(3);
initialize_rv();
shift(); kohonen::loadsamples(args());
set_neuron_initial();
t = last_analyze_step = tmax;
showbestsamples();
}
else return 1;
return 0;
}