mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-21 17:21:33 +02:00
Update to v094r36 release (open beta).
byuu says: Changelog: - GBA emulation accuracy has been substantially improved [Cydrak] - GBA ldm bug fixed [jchadwick] - SNES SuperFX timing has been improved [AWJ, ARM9, qwertymodo] - SNES accuracy profile is now ~8% faster than before - you no longer need to copy the .sys profile folders to ~/Emulation/System - you still need to put bios.rom (GBA BIOS) into Game Boy Advance.sys to use GBA emulation!! - you no longer need to pre-configure inputs before first use - loading games / changing window size won't recenter window - checkboxes in cheat editor update correctly - can't type into state manager description textbox on an empty slot - typing in state manager description box works correctly; and updates list view correctly - won't show files that match game extensions anymore (only game folders show up) - libco Win64 port fixes with FPU^H^H^H XMM registers - libco ARM port now available; so you too can play at 15fps on an RPi2! [jessedog3, Cydrak] - controller selection will check the default item in the menu now on game load - as usual, a whole lot of other stuff I'm forgetting Known issues: - type-ahead find does not work in list views (eg game selection dialog); I don't know how to fix this - there's no game file importer yet - there's no shader support yet - there's no profiler available for the timing panel, you need to adjust values manually for now
This commit is contained in:
@@ -170,20 +170,22 @@ auto BrowserDialogWindow::setPath(string path) -> void {
|
||||
|
||||
for(auto content : contents) {
|
||||
if(!content.endsWith("/")) continue;
|
||||
if(folderMode && isMatch(content.rtrim("/"))) continue;
|
||||
content.rtrim("/");
|
||||
if(folderMode && isMatch(content)) continue;
|
||||
|
||||
view.append(ListViewItem()
|
||||
.append(ListViewCell().setText(content.rtrim("/")).setIcon(Icon::Emblem::Folder))
|
||||
.append(ListViewCell().setText(content).setIcon(Icon::Emblem::Folder))
|
||||
.append(ListViewCell().setText(octal<3>(storage::mode({path, content}) & 0777)))
|
||||
);
|
||||
}
|
||||
|
||||
for(auto content : contents) {
|
||||
if(content.endsWith("/") && !folderMode) continue;
|
||||
if(!isMatch(content.rtrim("/"))) continue;
|
||||
if(content.endsWith("/") != folderMode) continue; //file mode shows files; folder mode shows folders
|
||||
content.rtrim("/");
|
||||
if(!isMatch(content)) continue;
|
||||
|
||||
view.append(ListViewItem()
|
||||
.append(ListViewCell().setText(content.rtrim("/")).setIcon(folderMode ? Icon::Action::Open : Icon::Emblem::File))
|
||||
.append(ListViewCell().setText(content).setIcon(folderMode ? Icon::Action::Open : Icon::Emblem::File))
|
||||
.append(ListViewCell().setText(octal<3>(storage::mode({path, content}) & 0777)))
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user