TUXDB - LINUX GAMING AGGREGATE
by NuSuey
NEWSFEED
▪️ GAMES
▪️ STEAM DECK ▪️ DEALS ▪️ CROWDFUNDING ▪️ COMMUNITY
tuxdb.com logo
Support tuxDB on Patreon
Currently supported by 8 awesome people!

🌟 Special thanks to our amazing supporters:


✨ $10 Tier: [Geeks Love Detail]
🌈 $5 Tier: [Arch Toasty][Benedikt][David Martínez Martí]


RetroArch 1.10.3 release

RetroArch 1.10.3 has just been released. This is a condensed version of the original article on our website. If you want to read the article in full, click here.

RetroArch Updates


See the Changelog below for a detailed breakdown of all the changes that have happened. One of the biggest changes for Steam users by far is the new Steam Discord Rich Presence support. NOTE: You will need to use the desktop client in order for this to work. It wont work with the webbrowser client.

Core Updates


Nestopia


FourScore support (4 player multitap) has been added for the following games:
  • Spacey McRacey
  • NNNNNN
  • Arkade Rush
  • Justice Duel
  • BMX Simulator
  • Way of the Exploding Fist

PCSX ReARMed


This core has a new auto frameskip mode (based on free audio buffer space). The Lightrec dynamic recompiler has been updated, and it should fix several crashes and bugs that occurred before. This would only affect users on x86/x86_64 and MIPS architecture processors, as ARM architecture-based systems continue to use the Ari64 dynarec instead. There has been a GunCon overhaul, the following input descriptors have been added:
  • Add Trigger, Reload, Aux A, and Aux B as mappable buttons in RetroArch menu for players 1 and 2.
  • GunCon trigger, A, and B buttons are mapped to Gun Trigger, Gun Aux A, and Gun Aux B instead of hard coded to left click, right click, and middle click.
  • Force cursor to corner of screen for offscreen reload so that reloading works on all four edges of the screen.
  • Allow Gun Reload RetroArch input to emulate an offscreen shot.
  • Switch gun coordinates from Pointer type to Lightgun type.

gpSP


The gpSP Libretro core now uses a small translation cache for the Miyoo platform.

Beetle Virtual Boy


Fixed a couple inaccuracies in the VSU modulation emulation, fixing a few sound effects in Virtual Boy Wario Land.

Mesen


The Nintendo Entertainment System emulator core has seen a couple of improvements. Before, the core would upload audio by using the audio batch callback multiple times per frame, unduly stressing the frontend audio buffer and leading to poor AV synchronisation. We now ensure that the audio batch callback is only used once per frame (unless the frontend does not support batches of sufficient size, in which case the samples will be split appropriately). We also did the following:
  • Sets the default audio sample rate to 48000 Hz. The previous default of 96000 Hz is so high that RetroArch is required to flush the audio driver twice per frame, which is bad for AV synchronisation.
  • Removes the 192000 and 384000 sample rate options, since these are in fact unsupported by the underlying emulator code

Snes9x 2005


This Super NIntendo Entertainment System emulator core has seen several improvements. Before, the core had bad audio sample pacing:
  • Neither variant of the core sent a number of samples per frame that would match the nominal expected values given by the sample rate and fps set in retro_get_system_av_info()
  • Due to integer rounding errors, the non-plus core always would send too few samples
  • The plus version of the core would send the correct number of samples, in terms of actual emulation but this does not tally with the sample rate reported to the frontend. Moreover, the plus core would call the audio batch callback twice per frame, which unduly stresses the frontend audio buffer.
  • As a result, the core had bad audio/video synchronisation, affecting frame pacing.
We fixed several issues:
  • The audio sample rate is now reported as 32040 Hz
  • The non-plus core uses an accumulator to ensure that fractional audio samples are accounted for and sent when required
  • The plus core now uploads audio samples only once per frame
  • In addition, we did the following
  • Fixed three memory leaks that were found in the core
  • Modified the Console Region core option to require a restart (since it has never been possible to change this at runtime)
  • Snes9x2005 Non-Plus: Add optional low pass audio filter
  • Apart from a substantial difference in audio emulation accuracy, probably the most obvious difference between the plus and non-plus versions of the core is that the latter has an inadequate level of low pass audio filtering, leading to tinny/scratchy sound.
We added a simple optional low pass filter at the output stage of the non-plus core. When enabled, audio is more mellow/bassy, and the generated sound is closer to that produced by the plus version with only a negligible increase in performance requirements.

Snes9x 2010


This Super NIntendo Entertainment System emulator core has seen several improvements. Use audio batch callback only once per frame Before, the core would upload samples in batches of ~64, which means the audio batch callback is used many (~9) times per frame. This overstresses the frontend audio buffer and leads to bad AV synchronisation. We have fixed the issue by ensuring that the audio batch callback is used to send all available samples only once per frame. Improve save state efficiency + fix save state size At present, every time that retro_serialize_size() is called (i.e whenever save states are used), the core determines the save state size by allocating a temporary 5 MB buffer and writing into this an actual save state. Moreover, it then fails to report the actual size correctly due to a bug in the memory stream wrapper code which means save states are always 5 MB in size. This represents a terrible inefficiency. Now, the save state size is now calculated independently of regular save state creation. No temporary buffer is required, and there is no need to actually write a save state to memory and save states now have the correct size (~830 kb)

60Hz modes for > 60Hz emulated platforms


Beetle Cygne/WonderSwan


At present the core runs at ~75Hz, matching the native refresh rate of the WonderSwan hardware. This is fine if the core is run on a VRR display (or one that natively supports 75Hz), but on regular 60Hz panels it can cause issues. In particular, screen tearing is very likely to occur. You can experience this on Linux (when not using a compositor and without vsync forced at the driver level) and on 3DS. The tearing is so bad on 3DS that we would previously consider the core to be unusable on that platform We now added a new 60Hz Mode core option, which can be used to force the core to run at 60Hz (actually 60.38Hz, but RetroArch handles this nicely via dynamic rate control). Note that the core still runs at the correct speed when this option is enabled internally, the core is running the nominal ~75 frames per second, but every 5th frame is dropped. This reduces video smoothness, but then 75Hz on a 60Hz display is not smooth either. More importantly, enabling this option eliminates screen tearing. In addition, we have also made the following minor changes:
  • The frontend reported framerate is now set correctly in 75Hz mode (previously this was truncated, leading to a slight tendency for the frontend audio buffer to under-run)
  • The internal audio samples buffer has been reduced from a ~64kb (!) static array to a tiny, dynamically created array of just the correct size
  • On 3DS, the video buffers are now allocated in linear memory (for improved performance)
  • The 96000, 192000 and 384000 audio sample rate options have been removed, because they are nonsensical and harm AV synchronisation
Thanks to this 60Hz mode, Beetle WonderSwan is now perfectly playable on RetroArch 3DS. We have enabled this option by default. If you are using a VRR display or if you are running at a native 75Hz resolution and would like to change it back to the native refresh rate, you can just turn this option off in Quick Menu -> Options. We have also added the core for RetroArch PS2, although it cant reach fullspeed. Its debatable whether its worth including, but for now we keep it in. There is also a new optional audio feature. The WonderSwan has a tendency to produce rather harsh/abrasive chiptunes. The low pass audio filter softens and mellows out the generated sound.

Changelog


  • AI/SERVICE: Disable AI Service setting by default
  • CHEEVOS: Disallow manual frame delay setting in Hardcore Mode
  • DATABASE: Serial scanning for Wii now includes WBFS
  • INPUT/MAPPING: Fix offset + crash when clearing input port binds
  • INPUT/MAPPING: Fix saving of Analog to Digital Type when configuration overrides are used
  • LOCALIZATION: Add Valencian language option
  • LOCALIZATION: Updates
  • MENU/SETTINGS: Move Show Menu Bar under Windowed Mode settings
  • MENU/SETTINGS: Add sublabels for Subsystems and Input Deadzone/Sensitivity
  • MENU/SETTINGS: Move On-Screen Notifications to top
  • MENU/XMB: Unified the shadow alpha value to a slightly darker one for better readability
  • MENU/XMB: Corrected the option label and sublabel for actual behavior
  • STATIC PLATFORMS: Populate all history list metadata when launching content from playlists
  • STEAM: Introduce Steam Rich Presence
  • VIDEO: Fast-Forward Frameskip improvement
  • VIDEO/THREADED: Stability fixes
  • WINDOWS/WINRAW: Fix multiple light guns


[ 2022-04-15 18:34:07 CET ] [ Original post ]



RetroArch
Libretro
  • Developer

  • Libretro
  • Publisher

  • TBD
  • Release

  • Singleplayer Multiplayer Coop
  • Tags

  • Game News Posts 84  
    🎹🖱️Keyboard + Mouse
    🎮 Full Controller Support
  • Controls

  • Very Positive

    (6993 reviews)


  • Review Score

  • https://www.retroarch.com
  • Website

  • https://store.steampowered.com/app/1118310 
  • Steam Store



  • RetroArch Linux [466.28 M]Mesen (1205330) Depot [4.85 M]Mesen S (1222634) Depot [3.98 M]mGBA (1227448) Depot [1.09 M]PCSX ReArmed Linux [1.29 M]Mesen Linux Depot [4.4 M]Sameboy Linux [264.61 K]FinalBurn Neo Linux [55.73 M]Mesen S Linux [2.98 M]Mupen64Plus Next Linux Depot [6.93 M]Kronos Linux Depot [9.48 M]Stella Linux Depot [5.79 M]mGBA Linux 1656170 [1.31 M]Genesis Plus GX Linux [12.06 M]

  • Public Linux depots


  • RetroArch is an open source and cross platform frontend/framework for emulators, game engines, video games, media players and other applications.

    While it can do many things besides this, it is most widely known for enabling you to run classic games on a wide range of computers and consoles through a slick graphical interface. Settings are also unified so configuration is done once and for all.

    In addition to this, you will soon be able to run original game discs (CDs) from RetroArch. We take videogame preservation seriously and want to ensure you can run your originally bought content on modern day PCs.

    RetroArch has advanced features like shaders, netplay, rewinding, next-frame response times, runahead, and more!




    Maybe there is no rewind in real life, but there is a rewind in RetroArch! You can go back in time and correct your mistakes!




    Seeing things as we remembered was our first priority, so with our Shading feature, you can change colors, smooth pixels or recreate your bedroom TV from 1995!




    You think the excitement of playing elbow-to-elbow with friends is a bygone memory? No! With our rollback-based, latency-hiding Netplay, your Player 2 is beside you again! Fight the competition not the lag!
    MINIMAL SETUP
    • OS: Linux Ubuntu 12.04
    • Processor: Intel Pentium 4 and up (CPU with SSE2 instructions required)Memory: 32 MB RAM
    • Memory: 32 MB RAM
    • Graphics: Any compliant OpenGL 2.x or Direct3D11 GPU. For shaders to work properly. should support at least Shader Model 2.0.
    • Storage: 500 MB available space
    RECOMMENDED SETUP
    • OS: Linux Ubuntu 12.04
    • Processor: Intel Core series or AMD equivalentMemory: 512 MB RAM
    • Memory: 512 MB RAM
    • Graphics: Intel: At least Intel HD 4K required for OpenGL. any compliant D3D11 GPU for Direct3D 11. Should support at least Shader Model 3.0 and/or 4.0.
    • Storage: 500 MB available space
    GAMEBILLET

    [ 5166 ]

    4.09$ (18%)
    42.46$ (15%)
    25.79$ (14%)
    8.47$ (15%)
    8.50$ (66%)
    25.79$ (14%)
    5.40$ (70%)
    2.50$ (90%)
    2.80$ (80%)
    31.95$ (20%)
    25.46$ (15%)
    3.93$ (21%)
    3.75$ (75%)
    4.50$ (70%)
    8.25$ (17%)
    25.46$ (15%)
    4.12$ (17%)
    25.79$ (14%)
    16.95$ (15%)
    9.00$ (70%)
    6.69$ (33%)
    5.92$ (15%)
    13.59$ (20%)
    25.16$ (16%)
    10.50$ (70%)
    4.00$ (80%)
    4.09$ (18%)
    15.99$ (20%)
    1.50$ (75%)
    12.29$ (18%)
    GAMERSGATE

    [ 1903 ]

    4.5$ (77%)
    4.25$ (83%)
    3.75$ (62%)
    15.0$ (70%)
    2.55$ (85%)
    5.99$ (40%)
    0.63$ (91%)
    14.62$ (51%)
    0.45$ (85%)
    1.46$ (89%)
    0.94$ (81%)
    2.55$ (74%)
    3.14$ (48%)
    1.84$ (74%)
    1.31$ (81%)
    1.13$ (89%)
    1.13$ (92%)
    3.75$ (62%)
    4.5$ (70%)
    4.5$ (85%)
    0.85$ (83%)
    0.68$ (86%)
    1.13$ (92%)
    0.75$ (92%)
    11.24$ (63%)
    5.63$ (81%)
    0.6$ (92%)
    1.84$ (74%)
    7.49$ (63%)
    15.0$ (62%)

    FANATICAL BUNDLES

    Time left:

    3 days, 14 hours, 43 minutes


    Time left:

    26 days, 14 hours, 43 minutes


    Time left:

    8 days, 14 hours, 43 minutes


    Time left:

    39 days, 14 hours, 43 minutes


    Time left:

    45 days, 14 hours, 43 minutes


    HUMBLE BUNDLES

    Time left:

    6 days, 8 hours, 43 minutes


    Time left:

    6 days, 8 hours, 43 minutes


    Time left:

    15 days, 8 hours, 43 minutes

    by buying games/dlcs from affiliate links you are supporting tuxDB
    🔴 LIVE