X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/bf041f59dced6a8973e53d0d2d467904a32a8f9a..2741145e6eb219cb0ccb75e729b86f8fc2b499bb:/projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h

diff --git a/projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h b/projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h
index cc02d14d..86bf197e 100644
--- a/projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h
+++ b/projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h
@@ -73,13 +73,13 @@ class Dumper
 
         std::string twoDigit(int value) const
         {
-            std::string res = x2str(value);
+            std::string res = std::to_string(value);
             if (res.length() < 2)
                 res = "0" + res;
             return res;
         }
 };
 
-} // namespace Caster
+} // namespace STG
 
 #endif