Search results

  1. M-HT

    Port Requests

    get_i32 if for reading big endian numbers so it won't get optimized to reading an int. I suspect the problem is in function mem_bump (in mem.c) - it can return unaligned pointers, if previous allocation size wasn't divisible by 4. Try aligning the size to 8 bytes (the same as in function...
  2. M-HT

    Release Heart of The Alien Redux

    The version of SDL2 shouldn't matter, because there are two code paths doing the same (one for versions 2.0.12 or higher and one for earlier versions). I tested both code paths on my PC and both do what they should, so I'm not sure why it doesn't work on Pyra.
  3. M-HT

    Release Heart of The Alien Redux

    I switched to new rendering API in SDL2, which should fix the fullscreen problem.
  4. M-HT

    Release Heart of The Alien Redux

    Sound issues when using the sdl12-compat might be caused by a bug I just fixed (in this commit). I also switched from SDL1 to SDL2 in the default branch. Version using SDL1 is available in sdl1 branch.
  5. M-HT

    Beta Anarch

    I was wondering why a game which says that it has lower HW demands than Doom would only run at 15-20 FPS, so I took a quick look at the source code and here are some notes about it: There's no need to compile it as c++ - either change the compiler from g++ to gcc or add the parameter -x c to...
  6. M-HT

    Release Sonivox EAS Daemon

    Sonivox EAS is a software synthesizer licensed by Google from the company Sonic Network Inc. under the terms of the Apache License 2.0. It's a Wave Table synthesizer using embedded samples, but it can optionally load samples from an external DLS file. Download: repo Source: GitHub Following...
  7. M-HT

    Other odd bugs that could use a bounty.

    I consider it more a workaround rather than a solution. The initial release of sdl12-compat was only a year ago. And maybe people who don't have Pyra aren't watching the Pyra section as closely as those that do.
  8. M-HT

    Other odd bugs that could use a bounty.

    You shouldn't need to recompile the games. sdl12-compat is a binary compatible replacement for SDL1.2 which uses SDL2 internally.
  9. M-HT

    Other odd bugs that could use a bounty.

    Maybe some of the SDL1.2 games can be made to work with sdl12-compat.
  10. M-HT

    Release CASIO SW-10 Daemon

    You only need the Virtual Midi daemon if an application doesn't want to connect directly to a softsynth or if you want a more complicated setup (e.g. sending midi data from one input to two outputs, ...). Otherwise you can skip it. You don't need it for Virtual Midi Piano Keyboard. When I get...
  11. M-HT

    Release CASIO SW-10 Daemon

    CASIO SW-10 is a software synthesizer that was included in Casio LANA Lite MIDI program (version 1.03 for Win9x only). This is a Linux version (ALSA MIDI sequencer interface) based on decompiled Windows driver. The original ROM file (ROMSXGM.BIN) is required, which the application can...
  12. M-HT

    App Request - Duke Nukem: Alien Armageddon (Duke Nukem 3D mod) (Branch? Custom compile? of EDuke32 PND)

    You can download it using archive.org - this should be version 0.73. Or you can download the newer beta version here.
  13. M-HT

    Release X-COM: UFO Defense

    That's intentional. Here's an excerpt from the readme which explains it:
  14. M-HT

    Release X-COM: UFO Defense

    Planet view and Mission view are two separate executables, when switching between them, one quits and the other one starts - that's why you see the desktop. When that happens, it means the mission executable crashed. In this case you see the result of previous mission. If you have a save game...
  15. M-HT

    Improve XRPD performance?

    What are your connection parameters ?
  16. M-HT

    GP2X open2x autorun after exit program

    The remaining thing to check is, whether GMenu2X is started the same way on boot or not. And if not, then change /usr/gp2x/gp2xmenu accordingly and see if it fixes the problem.
  17. M-HT

    GP2X open2x autorun after exit program

    The "&" after gmenu2x belongs there. It means the script doesn't wait until gmenu2x exits, but continues executing immediately. Which means that the application which executed the script will exit. Is /usr/menu/gmenu2x another script or executable ?
  18. M-HT

    GOG.com

    It should be compatible - it works for me :).
  19. M-HT

    GP2X open2x autorun after exit program

    I don't have Open2X on my GP2X so I can't verify it, but most (if not all) GP2X applications execute /usr/gp2x/gp2xmenu so I would start looking for the problem there. There may be an issue with this file.
  20. M-HT

    App Request - Duke Nukem: Alien Armageddon (Duke Nukem 3D mod) (Branch? Custom compile? of EDuke32 PND)

    You can't use 7z to create a PND. You can read about PNDs on the wiki. For example here and here.
Back
Top