Parcourir la source

Changed the return value of sqext_register_base64 to be the same in all. This value is mostly ignored.

mingodad il y a 13 ans
Parent
commit
3381e85cf9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      ext/sq_base64.cpp

+ 1 - 1
ext/sq_base64.cpp

@@ -143,7 +143,7 @@ SQRESULT sqext_register_base64(HSQUIRRELVM v)
     sq_newtable(v);
     sq_insert_reg_funcs(v, base64_methods);
     sq_newslot(v,-3,SQTrue);
-    return 1;
+    return 0;
 }
 
 #ifdef __cplusplus