mid2agb: allow -L param to take string

This commit is contained in:
Diegoisawesome 2018-09-23 00:27:40 -05:00
parent a63f3ce872
commit e0acb92a3f

View File

@ -153,7 +153,7 @@ int main(int argc, char** argv)
case 'L':
if (arg == nullptr)
PrintUsage();
g_asmLabel = std::stoi(arg);
g_asmLabel = arg;
break;
case 'N':
g_compressionEnabled = false;