diff options
| author | Diegoisawesome <diego@domoreaweso.me> | 2018-09-23 00:27:40 -0500 |
|---|---|---|
| committer | Diegoisawesome <diego@domoreaweso.me> | 2018-09-23 00:40:37 -0500 |
| commit | e0acb92a3f71b196644d2c8a3b6e2b5729f92a9a (patch) | |
| tree | e338c9fb6068f3cad1e38233d0cb15f7850cf153 /tools/mid2agb | |
| parent | a63f3ce8722ba2bf39344c1aa83d141e8f3ddf09 (diff) | |
mid2agb: allow -L param to take string
Diffstat (limited to 'tools/mid2agb')
| -rw-r--r-- | tools/mid2agb/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mid2agb/main.cpp b/tools/mid2agb/main.cpp index 03feabdd8..ece8e2556 100644 --- a/tools/mid2agb/main.cpp +++ b/tools/mid2agb/main.cpp @@ -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; |
