Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/CHIP-8/selector.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static char ** remove(char ** first, char ** last) {
}

const char * select_rom() {
const int max_roms = 10;
const int max_roms = 50;
char * filenames[max_roms];
int selected_rom = 0;
char name_buffer[FILENAME_LENGHT_MAX];
Expand Down
2 changes: 1 addition & 1 deletion apps/Example-Cpp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void extapp_main(void) {

// Select a file (The code is in selector.c)
// The code is a bit more complicated, but you can see how to use the file system API to read a file
const char * filename = Selector::select_file("", 10);
const char * filename = Selector::select_file("", 50);
// Wait for the key to be released
Peripherals::waitForKeyReleased();

Expand Down
2 changes: 1 addition & 1 deletion apps/Example/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void extapp_main(void) {

// Select a file (The code is in selector.c)
// The code is a bit more complicated, but you can see how to use the file system API to read a file
const char * filename = select_file("", 10);
const char * filename = select_file("", 50);
// Wait for the key to be released
waitForKeyReleased();

Expand Down
1 change: 0 additions & 1 deletion apps/KhiCAS/src/gmp-6.2.1/mpn/gcdext.c

This file was deleted.

Loading