mirror of
https://github.com/cyberboy666/r_e_c_u_r.git
synced 2025-12-12 19:30:11 +01:00
fixed a few small bugs and only read analog inputs if there is a change
This commit is contained in:
@@ -113,7 +113,7 @@ class BrowserMenu(Menu):
|
||||
|
||||
for f in files:
|
||||
split_name = os.path.splitext(f)
|
||||
if (split_name[1] in ['.mp4', '.mkv', '.avi', '.mov']):
|
||||
if (split_name[1].lower() in ['.mp4', '.mkv', '.avi', '.mov']):
|
||||
self.menu_list.append(dict(name='{}{}'.format(indent, f), slot='-'))
|
||||
|
||||
def _is_file_in_bank_data(self, file_name):
|
||||
|
||||
Reference in New Issue
Block a user