mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: %u to format a uint
--HG-- branch : develop
This commit is contained in:
parent
687301377e
commit
9f761780f1
1 changed files with 1 additions and 1 deletions
|
@ -1537,7 +1537,7 @@ namespace NLGUI
|
|||
for (uint e=0 ; e<__num__ ; e++) \
|
||||
{ \
|
||||
std::string str = __toStringFunc__((__enum__)e); \
|
||||
std::string temp = __name__ + toString(".") + __toStringFunc__((__enum__)e) + " = " + toString("%d;", e); \
|
||||
std::string temp = __name__ + toString(".") + __toStringFunc__((__enum__)e) + " = " + toString("%u;", e); \
|
||||
ls.executeScript(temp); \
|
||||
} \
|
||||
|
||||
|
|
Loading…
Reference in a new issue