should be $R0, not $0

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3550 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-05-28 14:03:24 +00:00
parent 4cf2341292
commit af6951c0d3

View file

@ -749,7 +749,7 @@ has failed:</p>
Function ValidateCustom
ReadINIStr $R0 "$PLUGINSDIR\test.ini" "Field 1" "State"
StrCmp $0 "" 0 +3
StrCmp $R0 "" 0 +3
MessageBox MB_ICONEXCLAMATION|MB_OK "Please enter your name."
Abort