Richard Peck

Results 47 comments of Richard Peck

`"inline-style-prefixer": "^4.0.2"` adding this to the base `package.json` works

Yes, I had that issue in Heroku and by placing that code into the app it works.

I've made some progress on this. The core problem is the `ruby2d.c` file is mixing `ruby` functions and `mruby` functions. For example, `VALUE result = rb_ary_new2(3);` should be `mrb_value result...

I've managed to fix most of the errors but keep hitting the following when I attempt to compile: - ``` C:/MSYS2/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\Richard\AppData\Local\Temp\ccjCc50o.o:app.c:(.text+0x205): undefined reference to `R2D_FreeWindow' C:/MSYS2/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\Users\Richard\AppData\Local\Temp\ccjCc50o.o:app.c:(.text+0x867): undefined reference...

This is the `ruby2d.c` file I changed. I have not changed the whole file, only the functions that were throwing erros. I'll add another comment with details on what was...

For the above file, the main thing I noticed was that each error thrown by the compiler was due to parts of it using pure ruby functions, where we had...

> Will check tomorrow because it too late for today. > > But, anyway, if meet some issue, we can @matz? This is a compiler issue with this code, I...

![build](https://user-images.githubusercontent.com/1104431/146793465-b52ba929-8ed5-4c9a-9dee-d488cac37ce1.png) I managed to get it to build!!! The app it builds doesn't work, but we can look into that separately. The way to get it to build was to...