mickelson / attract

A graphical front-end for command line emulators that hides the underlying operating system and is intended to be controlled with a joystick or gamepad.
http://attractmode.org
GNU General Public License v3.0
393 stars 115 forks source link

Search bug and fix #678

Closed ghost closed 3 years ago

ghost commented 3 years ago

Searching for a game while wheel is located on the first game in the list results in AM not updating the first wheel logo, the snap and any other art related to the first result in the list. This bug occurs in both the search module shown in the following video and the built-in AM search plugin.

This is fixed by altering line 1510 in function FePresent::set_search_rule , in file fe_present.cpp from: update_to_new_list( 0 ); To: update_to_new_list( 0, true );

Video of the issue: https://youtu.be/Iz-ix4664hQ

mickelson commented 3 years ago

Hey thanks for the fix!