-
-
Notifications
You must be signed in to change notification settings - Fork 373
compatibility with lua 5.1 #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…s tostring(val)..tostring(stack), but in lua>5.1 it returns just tostring(val).
Assuming I understand what you meant correctly, In regard to the commit message: you should try to keep the first line as a very brief summary, followed by an empty line and an optional detailed description. |
|
Is there any way you can find out the Would you be able to tell me what the following prints: print(tostring({123})) Thanks |
I beleive, it's not modified Lua, I provide you link to sources, you can check yourself. I haven't standalone interpreter for this version.
But read your code, in your case you call:
difference here. |
The result you pasted is not standard The
|
I contacted with developers of fceux, they used 5.1.4 version. But fceux built from that sources with visual studio 2010 and 2015 printed my version, I don't understand why. |
If you're using other 3rd-party modules they may be overriding the |
I used your library for scripting in fceux emulator, which use lua 5.1 and found little bug with bool serialization. Hope this fix helps others.