Mauricio Garrido
Mauricio Garrido
I did some research and got this from gdb: ``` (gdb) continue Continuing. [New Thread 45.268] [New Thread 45.272] Thread 1 received signal SIGSEGV, Segmentation fault. navigateToDir (mount=0x0, ppDir=0x8007f34, ppDir@entry=0x8007f2c,...
Thanks @urherenow. I followed your advice and setup a VM using Hyper-V. And ... it works now! I don't know what is wrong in WSL but the romfs example works...
The app in question is rockbox. And originally, rockbox was intended to be used as a "firmware" replacement. I did a quick review of the features implemented in libn3ds and...
Oh. Very interesting. Rockbox implements it's own dsp functions so it should be enough with basic pcm playback. Could you please post an example of pcm playback? Mmm, ia there...
Ok, I will write a test and submit it. FYI, I have ported the library to C code. I have been comparing the output of both versions. I found the...
I have updated the issue title to be more accurate of the problem. And have confirmed that the issue does *not* happen in go. Because in go calling 'f.file.ReadAt' does...
> That’s really cool! Is the C version gonna public? I am porting a music app for the nintendo 3ds. Once finished, I will submit the code to the app...
Hi there, I am still doing some tests with the c port. And have found something interesting: I have the following test: ``` func SmallBufferWrite() { f1, err := os.OpenFile("test.bin",...
Now, what happens if you open the file only for writing? ``` f1, err := os.OpenFile("test.bin", os.O_WRONLY, 0644) ``` It seems, the write is not done at all. Because it...