Ronny Otto

Results 171 issues of Ronny Otto

For now the person generator simply takes "names" from an array and ignores the probability of a name / usage amount within the population of a country. so a "Thomas"...

```BlitzMax SuperStrict Framework Brl.Blitz Function PassAsLong(l:Long) End Function Function PassAsLongInt(l:LongInt) End Function Local i:Int = 10 PassAsLong(i) PassAsLongInt(i) ``` results in a compile warning: ``` Compile Warning: In call to...

```BlitzMax SuperStrict Framework Brl.StandardIO Enum EEmptyFlagsEnum flags End Enum ``` generates (debug build, same for release build): ``` struct BBEnum_m_untitled3_EEmptyFlagsEnum{ const char * name; char * type; char * atype;...

Trying to compile modules with GCC 14.2(.1) revealed a potential issue in the way how BCC does function pointer stuff: The error in openal.mod: ``` /home/ronny/Downloads/BlitzMax/mod/pub.mod/openal.mod/.bmx/openal.bmx.release.linux.x64.c:702:42: Fehler: Zuweisung an »BBINT...

Heya, I just came across an old remark in my game code: ``` 'TODO: can be "struct" as soon as all NG releases ship with the new/fixed ' bcc (newer...

I tried to manipulate/modify a struct field from within (in my case to retrieve current max2d stuff like resolution, scale, ...) but somehow it is is only visible "inside" the...

``` Struct STest Field o1:object Field o2:object End Struct ``` leads to: ``` Compile Error: Unable to find overload for defaultcomparator_compare(STest Var,Object). Argument #2 is "Object" but declaration is "STest...

NG does ignore the "var" property of a function argument when checking if it can assign it to something defining a similar signature (but without var) This compiles in NG...

See this code: ```BlitzMax SuperStrict Framework Brl.StandardIO Import Brl.Reflection Local a:Byte = 250 Local b:Byte = 10 Print a+b Local arr:Object = [a + b] Print TTypeID.ForObject(arr).Name() Local i:Int =...

Heya, Seems passing a "comparison result" as parameter is not interpreting it as int when only method overloads accept "long" (not "int") ```BlitzMax SuperStrict Framework Brl.StandardIO Type TTest Method New(i:Long)...