Search results

  1. GernotFrisch

    Cross-Compiling Is Bollocks! Toolchains Are Bollocks! Use Yo

    it says: flac-dev: unsatisfied reccomendation for libflac-dev, libgcc-dev, libflac++-dev what now?
  2. GernotFrisch

    Cross-Compiling Is Bollocks! Toolchains Are Bollocks! Use Yo

    I can't find the file SDL/SDL_mixer.h It's not there. The other SDL files are. I tried opkg install libsdl-mixer-dev
  3. GernotFrisch

    kopierschutz Kommerzielle Spiele?

    Falsch. Auf dem iPhone muss man eine Datei verändern damit das Programm mit Jailbreak läuft (also ohne echten Kauf) und das kann man prüfen. Viele Spiele verwenden den Wert um das Spiel langsam zu verstümmeln oder blenden Cracker-Warnungen nach 5 Minuten ein. Fakt ist: Wir verkaufen für das...
  4. GernotFrisch

    Wiz WLAN Firmware und Browser Unterstützung

    ich hab' hier eine SD Karte mit Wifi adapter eingebaut. Könnte sowas interessant sein? Witzig finde ich im Video die Batterieanzeige ;) (ist noch bet und die Anzeige ist nicht sehr genau - ich weiß)
  5. GernotFrisch

    Exiting To Menu

    In GLBasic I do this: -name my program "gp2xwiz.prg" -make a script called "thegame.gpe" -in that script call the .prg file -after the prg file call the menu I think that's the most convenient way for all. Geeks can exchange that to GMenu2X, and noobs will get what they expect.
  6. GernotFrisch

    Gameparks zweiter WIZ - VM-100 heute bei mir eingetroffen!!

    Bah, sieht aus wie ein 70er Fernseher. Und keine Knöpfe mehr... Mir gefällt der Wiz um Längen besser. Wenn es doch nur endlich Wifi gäbe...
  7. GernotFrisch

    Verkaufe ein iphone 3G 16GB - 300 Euro VHB

    Würde mich wundern, wenn das über 200,- geht. Sorry. Hab' meins bei ebay.co.uk für 230,- geholt. Ohne Kratzer.
  8. GernotFrisch

    GLBasic für Dingux?

    Hatte ich mal vor.Leider bin ich zur Zeit mit Arbeit und anderen Platformen ziemlich ausgelastet... Sollte aber nicht viel Arbeit sein, da man auf SDL aufsetzen kann.
  9. GernotFrisch

    WizSticks Update

    OK, muss ich beides Ändern. Das mit dem Absturz ist ja doof. Auf meinem Wiz läufts. :(
  10. GernotFrisch

    Highspeed Timer(Counter)

    the function is calle "_get_ticks_us", but "us" us used for nano (1/1000 of milli). Is the return value milli or nano seconds now?
  11. GernotFrisch

    Highspeed Timer(Counter)

    How would I handle the "wrap after an hour" correctly? See if the value was less than last time, and if so, add the last-time value, too?
  12. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    The returned number is the same on both of my devices (1670119342). What am I doing wrong? int memfd = open("/dev/mem", O_RDWR); volatile unsigned int *memregs32; memregs32 = (volatile unsigned int*) mmap(0, 0x20000, PROT_READ|PROT_WRITE, MAP_SHARED, memfd, 0xC0000000); typedef struct...
  13. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    int memfd = open("/dev/mem", O_RDWR); volatile unsigned int *memregs32; memregs32 = (volatile unsigned int*) mmap(0, 0x20000, PROT_READ|PROT_WRITE, MAP_SHARED, memfd, 0xC0000000); int rv = 0; typedef struct regStruct_guid { unsigned long Data1; unsigned short Data2...
  14. GernotFrisch

    Double Buffering

    How do I do that? Is it just setting the memory address and a dirty flag? if(draw_to_0) { draw_to_0=0; MLCADDRESS0 = 0x3700000; pOffscreen = (what mmap gives for 0x374b000) } else { draw_to_0=1; MLCADDRESS0 = 0x374B000; pOffscreen = (what mmap gives for 0x3700000) } // set dirty...
  15. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    Address : C001_F844h [31:0] R GUID_DATA1 this one?
  16. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    I don't have that manual. Where can I get it please?
  17. GernotFrisch

    Copy 320X240 Buffer To 240X320 Screen

    Ah. Silly me. Is there a tutorial how to swap the buffers?
  18. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    I just need a one out of 1000 number, so what's the "easiest" code to do that? I have no idea about "e2".
  19. GernotFrisch

    Copy 320X240 Buffer To 240X320 Screen

    Tearing when waiting for vblank!! AHHH! Now I'm waiting for the vblank to finish and then do the flip. However, the flip takes longer than the vblank, thus I get a tearing now on this position: I'm using /dev/fb0 btw.
  20. GernotFrisch

    Caanoo / WIZ Find Serial Number Of Wiz?

    Hi, how can I get a unique device ID for the wiz?
Back
Top