From 03b205db1b38d6c760c86af62606161bb8eecdda Mon Sep 17 00:00:00 2001 From: Kitty Draper Date: Sat, 5 Mar 2011 23:43:19 -0500 Subject: Fixed looking for BAGSFC directory --- source/nds/gui.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source') diff --git a/source/nds/gui.c b/source/nds/gui.c index 8b8be4a..56ffc02 100644 --- a/source/nds/gui.c +++ b/source/nds/gui.c @@ -4515,29 +4515,29 @@ void gui_init(u32 lang_id) ds2_setCPUclocklevel(11); printf_clock(); - //Find the "BAGSFC" system directory + //Find the "CATSFC" system directory DIR *current_dir; - strcpy(main_path, "fat:/BAGSFC"); + strcpy(main_path, "fat:/CATSFC"); current_dir = opendir(main_path); if(current_dir) closedir(current_dir); else { - strcpy(main_path, "fat:/_SYSTEM/PLUGINS/BAGSFC"); + strcpy(main_path, "fat:/_SYSTEM/PLUGINS/CATSFC"); current_dir = opendir(main_path); if(current_dir) closedir(current_dir); else { strcpy(main_path, "fat:"); - if(search_dir("BAGSFC", main_path) == 0) + if(search_dir("CATSFC", main_path) == 0) { printf("Dirctory find: %s\n", main_path); } else { - err_msg(DOWN_SCREEN, "Can't fine BAGSFC directory, press any key to exit\n"); + err_msg(DOWN_SCREEN, "Can't fine CATSFC directory, press any key to exit\n"); goto gui_init_err; } } -- cgit v1.2.3