1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 01:00:25 +00:00

mymake error: == not =

This commit is contained in:
Zeno Rogue 2022-01-17 22:34:27 +01:00
parent 549e57b3d1
commit f366e4fbad

View File

@ -236,7 +236,7 @@ int main(int argc, char **argv) {
else obj_dir += c;
linker += " " + s;
}
else if(s = "-o") {
else if(s == "-o") {
exec_name = argv[i+1];
i++;
}