1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-01 15:30:40 +00:00

argcolor now uses parsecolor

This commit is contained in:
Zeno Rogue 2024-05-27 13:09:42 +02:00
parent 6ca2051c96
commit 54443e365d

View File

@ -105,11 +105,7 @@ EX namespace arg {
EX bool argis(const string& s) { if(args()[0] == '-' && args()[1] == '-') return args().substr(1) == s; return args() == s; }
EX color_t argcolor(int bits) {
string s = args();
auto p = find_color_by_name(s);
if(p && bits == 24) return p->second;
if(p && bits == 32) return (p->second << 8) | 0xFF;
return strtoll(argcs(), NULL, 16);
return parsecolor(args(), bits == 32);
}
int parameter_id;