Page 3 of 3 FirstFirst 123
Results 21 to 30 of 30

Thread: Gens/GS

  1. #21
    Join Date
    Jul 2006
    Beans
    232
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Gens/GS

    Quote Originally Posted by GerbilSoft View Post
    You probably need to register an account in order to upload files.
    I have, megamaced

    Quote Originally Posted by GerbilSoft
    Also, if possible, can you rebuild the m4.2 package with the above patch for "Load Config" / "Save Config As"?
    Will do

  2. #22
    Join Date
    Oct 2008
    Beans
    75

    Re: Gens/GS

    Quote Originally Posted by megamaced View Post
    I have, megamaced
    Oh yeah, I forgot that Sonic Retro required admin validation before you could upload anything to the Wiki. Your account has been approved, so you should be able to upload it now.

  3. #23
    Join Date
    Jun 2007
    Location
    Rio de Janeiro - Brasil
    Beans
    319
    Distro
    Kubuntu Development Release

    Re: Gens/GS

    Is there any way to make Gens/GS play the audio tracks from Sega-CD games when loading from cue/bin images? When I load the cue-sheet file the game doesn't run (black screen) and when I load the bin file it runs but without the cdda tracks =/

  4. #24
    Join Date
    Oct 2008
    Beans
    75

    Re: Gens/GS

    Quote Originally Posted by wingnux View Post
    Is there any way to make Gens/GS play the audio tracks from Sega-CD games when loading from cue/bin images? When I load the cue-sheet file the game doesn't run (black screen) and when I load the bin file it runs but without the cdda tracks =/
    BIN/CUE isn't fully supported yet; however, since Physical CD-ROM support works, you can use cdemu to create a virtual drive and mount the BIN/CUE that way. Once you have cdemu set up, change the CD drive in Gens to the virtual drive (e.g. /dev/scd1), restart Gens, and then select File, Boot CD.

  5. #25
    Join Date
    Jan 2007
    Beans
    2,052

    Re: Gens/GS

    @ GerbilSoft
    i don't mean to be repetitive or be a pest, but i asked this before:
    could you also look into implementing gens32's improved audio options in gens/gs?
    Linux User #440528
    openSUSE 12.1 x86_64/KDE 4.8.4

  6. #26
    Join Date
    Oct 2008
    Beans
    75

    Re: Gens/GS

    Quote Originally Posted by disturbedite View Post
    @ GerbilSoft
    i don't mean to be repetitive or be a pest, but i asked this before:
    could you also look into implementing gens32's improved audio options in gens/gs?
    I'll take a look at Gens32's audio options and see what's useful.

    Right now, I'm finishing up the m5 release. The major new feature in m5 is integration of the Windows build into the same codebase, but there's also lots of bugfixes in the core code and the GTK+ UI.

  7. #27
    Join Date
    Jul 2006
    Beans
    232
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Gens/GS

    Quote Originally Posted by GerbilSoft View Post
    I missed converting a few NULLs to "" when converting some functions to use C++ strings. Apply this patch to fix the problem:
    Code:
    diff --git a/src/gens/util/file/config_file.cpp b/src/gens/util/file/config_file.cpp
    index 9509c67..57ff74e 100644
    --- a/src/gens/util/file/config_file.cpp
    +++ b/src/gens/util/file/config_file.cpp
    @@ -262,7 +262,7 @@ int Save_As_Config(void)
     {
            string filename;
    
    -       filename = GensUI::saveFile("Save Config As", NULL, ConfigFile);
    +       filename = GensUI::saveFile("Save Config As", "", ConfigFile);
            if (filename.length() == 0)
                    return 0;
    
    @@ -532,7 +532,7 @@ int Load_As_Config(void *Game_Active)
     {
            string filename;
    
    -       filename = GensUI::openFile("Load Config", NULL, ConfigFile);
    +       filename = GensUI::openFile("Load Config", "", ConfigFile);
            if (filename.length() == 0)
                    return 0;
    Didn't seem to work:

    Code:
    patching file a/src/gens/util/file/config_file.cpp
    Hunk #1 FAILED at 262.
    Hunk #2 FAILED at 532.
    2 out of 2 hunks FAILED -- saving rejects to file a/src/gens/util/file/config_file.cpp.rej

  8. #28
    Join Date
    Aug 2005
    Location
    Birmingham, AL
    Beans
    974
    Distro
    Kubuntu

    Re: Gens/GS

    Quote Originally Posted by megamaced View Post
    Didn't seem to work:

    Code:
    patching file a/src/gens/util/file/config_file.cpp
    Hunk #1 FAILED at 262.
    Hunk #2 FAILED at 532.
    2 out of 2 hunks FAILED -- saving rejects to file a/src/gens/util/file/config_file.cpp.rej
    Patch should be in the source directory and you need to run patch with -p1 since there's a leading "a" directory in the file path (patch maker used this to separate old code tree from new).

    patch -p1 < gens.patch
    (or whatever you called it)

    Or just do what I did: open the file in a text editor, go to those lines, and change NULL to ""

  9. #29
    Join Date
    Jul 2006
    Beans
    232
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Gens/GS

    Doesn't work. The patch doesn't patch. I'd love to be proven wrong.

    @GerbilSoft - I'll get the deb uploaded to Sonic Retro later. Been crazy busy over the last few days

  10. #30
    Join Date
    Oct 2008
    Beans
    75

    Re: Gens/GS

    I've released m5, but since I can't edit the first post in this topic, I'm going to start a new topic.

Page 3 of 3 FirstFirst 123

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •