Recent content by Amiga-Tan

  1. Amiga-Tan

    Xell-Reloaded Build Compatible With All Consoles, Including Winchester

    Is there any way to set things up so that Xell-Reloaded starts automatically without any user input? I'm using BadAvatar. I'd like to turn my spare Xbox 360 into a PowerPC Linux box and i'd like to be able to power it up and step away from it for a moment while it starts Linux, but i can't seem...
  2. Amiga-Tan

    Homebrew Feedback Misc Need help with 3ds arm9 touchscreen code

    I don't know how to get access to the arm11, i'm basing my code off of a cleaned, wiped of Decrypt9WIP.
  3. Amiga-Tan

    Homebrew Feedback Misc Need help with 3ds arm9 touchscreen code

    Make my own OS for the 3DS, one more PDA oriented than gaming oriented. Yeah... i can see that (o o') that too (- -')
  4. Amiga-Tan

    Homebrew Feedback Misc Need help with 3ds arm9 touchscreen code

    How the hell do i get touchscreen coordinates without the 3ds hid.h file, i have been looking for this shit for weeks and nothing has come up besides mazes of fucking header files leading to dead ends and code that doesn't make sense to me, i just want to get two integers and a bool god dammit
  5. Amiga-Tan

    Homebrew Need some help with a TSR-like menu on 3ds

    How do i implement a menu that runs in the background and opens up when a button combination is pressed, like Rosalina, or Wumiibo? I wanna make a "toolbox" thing with more generalized day-to-day tools like a calendar and other goodies, without modifying the Luma firmware.
  6. Amiga-Tan

    What kind of 3DS is this ?

    that looks really cool :0, i should do that with mine since the back of mine is so fucked up... :glare:
  7. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    Yeah, code readability was never a strong suit of mine, hailing from my TI-Basic and Batch scripting days...
  8. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    Broke text rendering while trying to implement text selecting. Can't tell what part of the code is screwing up the text drawing, but now it stops everything while attempting to draw text... Hm... Also, i plan on doing this in place of making the browser itself pluck out urls for now. The goal...
  9. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    Jesus, a browser that decrepit can still load GBAtemp and the machine it's on is WORSE than the old3ds in terms of specs? I mean, i've seen a shitty Alcatel Go Flip (512 Megs of ram) run a web browser, so it wouldn't be too unreasonable to go for a browser with half, or later, a quarter of the...
  10. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    1. There's already a homebrew web browser for the DS. Why can't i make one on my own? Just because i'm one person doesn't mean i can't make something. 2. I've made some conceptual browsers in JS that parse web pages pretty well without conventional means. Keep in mind that this isn't finished...
  11. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    https://github.com/Ghost-Bit/Shanghai Test release is up. Controls should be in the opening screen. It's not done, this is just for feedback and suggestions. Keep in mind this is my first C++ program, so you might see a mishmash of my Basic experience in this code. Sorry... (^ ^; This current...
  12. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    Fixed scrolling! Now i need to figure out the GUI, do a few more things under the hood, and then the release will be ready!
  13. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    I think i'm doing quite well, though. Just needs a lot more of the other features implemented, as well as a fix for everything dissapearing after a certain point in the scrolling. (image 2 is the splash screen, not an actually loaded external image)
  14. Amiga-Tan

    Homebrew Feedback Homebrew app WIP - Jermus 3DS Web Browser

    How do i join two c strings together? i try strcat with constant strings (i.e strcat("Hello!",bar);), and it always complains about the constants, i make one of them a constant too, and suddenly the other variable isn't a constant anymore. Is there just, a better, more versatile way to combine C...